| От | Jon Barnett |
|---|---|
| Тема | RE: [INTERFACES] JDBC next() method |
| Дата | |
| Msg-id | 01BE86D8.15D52260.jbarnett@pobox.com обсуждение |
| Список | pgsql-interfaces |
On Wednesday, 14 April 1999 23:18, Peter Mount
[SMTP:petermount@it.maidstone.gov.uk] wrote:
> This looks ok.
>
> queryResult is null if there was an error in the query, so you should
> check for that.
>
> However, normal use would have the result parsed within a
> while(queryResult.next()) {} loop, so your interpretation is correct.
I don't think the query should give an error - as the query is at least
syntactically correct. Certainly, if I check for a queryResult == null, the
condition doesn't occur for an empty table.
I just had a quick browse on some old JDBC notes and it looks like the correct
solution is:
queryResult = dbStatement.executeQuery("select max(history_id) from history");
queryResult.next();
nextID = queryResult.getLong(1) + 1;
if (queryResult.wasNull())
nextID = 0;
Note: queryResult.wasNull() only works immediately after calling a getxxx
method.
Thanks.
JonB.
В списке pgsql-interfaces по дате отправления:
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера