summaryrefslogtreecommitdiff
path: root/psycopg/error.h
Commit message (Collapse)AuthorAgeFilesLines
* Don't look up for Python encodingDaniele Varrazzo2016-12-291-1/+1
| | | | | | Store the encode/decode functions for the right codec in the connection. The Python encoding name has been dropped of the connection to avoid the temptation to use it...
* conn->codec rename to pyencDaniele Varrazzo2016-12-261-1/+1
|
* psycopg2.Error object and type renamed more consistentlyDaniele Varrazzo2013-03-201-3/+3
|
* Store a PGresult in the Exception errorDaniele Varrazzo2013-03-191-1/+4
| | | | | This makes the Diagnostics independent from further operations on the cursor and allows using it with exceptions not generated by a cursor.
* Added a C structure to psycopg.ErrorDaniele Varrazzo2013-03-191-0/+40
This will allow to store a PGresult in it.