Re: timeout

Поиск
Список
Период
Сортировка
От Jeremy Buchmann
Тема Re: timeout
Дата
Msg-id 200106282023.NAA22036@mail.greatbasin.net
обсуждение исходный текст
Ответ на timeout  (Jie Liang <jliang@ipinc.com>)
Список pgsql-admin
> Is ther any to set a timeout when execute a sql stmt??

I believe this depends on the interface...for example, in JDBC, it
is this:

Statement s = new Statement();
s.setQueryTimeout(20);  // Sets query timeout to 20 seconds.
...

I don't know what other interfaces offer timeouts, but that's where
you should look to find out.


--Jeremy

В списке pgsql-admin по дате отправления:

Предыдущее
От: Jie Liang
Дата:
Сообщение: timeout
Следующее
От: Chris Ruprecht
Дата:
Сообщение: Programming PostGreSQL - making myself clearer ;-).