Re: I forgot the "Begin" command, what should I do ?

Поиск
Список
Период
Сортировка
От Chris Smith
Тема Re: I forgot the "Begin" command, what should I do ?
Дата
Msg-id 09a601c3f891$3c8f5a80$6f00000a@KYA
обсуждение исходный текст
Ответ на I forgot the "Begin" command, what should I do ?  ("Waldomiro" <wmiro@shx.com.br>)
Список pgsql-jdbc
Waldomiro wrote:
> A few days ago, I wrote a program that updates some tables, but I
> forgot the "begin" and the "commit".
>
> Is there a way to throws an exception when I update a table without
> the "begin" command ?
>
> It would be interesting because the Database will show I forgot a
> command.

You're better off not issuing 'begin' or 'commit' commands in SQL anyway.
JDBC is designed to do those kinds of things using methods on the Connection
class.  Nevertheless, if you're issuing them by hand and issue a commit
without a corresponding 'begin' or some such, the warning that results will be
available through the Statement's getWarnings() method.

--
www.designacourse.com
The Easiest Way to Train Anyone... Anywhere.

Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation


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

Предыдущее
От: "Chris Smith"
Дата:
Сообщение: Re: PATCH: SSL documentation and flexibility
Следующее
От:
Дата:
Сообщение: Question about java