Re: PDO does not trow Exceptions for queries

Поиск
Список
Период
Сортировка
От Andreas Kalsch
Тема Re: PDO does not trow Exceptions for queries
Дата
Msg-id 4A776D0D.4040707@gmx.de
обсуждение исходный текст
Ответ на Re: PDO does not trow Exceptions for queries  (Chris <dmagick@gmail.com>)
Список pgsql-php
In this case it was my false - I forgot to enable error reporting on the
PHP side.
Now everything works like I would expect it.


Chris schrieb:
> Andreas Kalsch wrote:
>> $C->DB is my connection, but no exceptions will be thrown for the
>> last queries - althogh there is an error (whoch the command line
>> would show).
>> Is there another option to activate throwing of exceptions?
>>
>>
>> $C->DB->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
>>
>> $C->DB->query('DROP TABLE key');
>>
>> $C->DB->query('CREATE TABLE key ( id SERIAL NOT NULL PRIMARY KEY, k
>> TEXT NOT NULL UNIQUE )');
>>
>> $S = $C->DB->prepare('INSERT INTO key (k)
>> SELECT lower(k) FROM current_node_tags LIMIT 100');
>
> prepare returns a 'pdostatement' which you then have to execute:
>
> $S->execute();
>
> This should generate an exception.
>


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

Предыдущее
От: Chris
Дата:
Сообщение: Re: PDO does not trow Exceptions for queries
Следующее
От: Eric Chamberlain
Дата:
Сообщение: Stored procedures, PDO, and PHP issue