summaryrefslogtreecommitdiff
path: root/psycopg/connection.h
Commit message (Expand)AuthorAgeFilesLines
* Use the proper API functions to look up codec functionsDaniele Varrazzo2016-12-291-1/+3
* Don't look up for Python encodingDaniele Varrazzo2016-12-291-2/+3
* Store python encoding and decoding functions in the connectionDaniele Varrazzo2016-12-271-0/+4
* conn->codec rename to pyencDaniele Varrazzo2016-12-261-1/+1
* Optimize UTF8 and Latin1 decodingDaniele Varrazzo2016-10-121-0/+3
* Pending notice list converted into a forward listDaniele Varrazzo2015-06-021-0/+1
* Dropped unneeded constness on the notice messageDaniele Varrazzo2015-06-021-1/+1
* Dropped unused notice_filter connection memberDaniele Varrazzo2015-06-021-1/+0
* Added cursor_factory connection attribute and connect() parameterDaniele Varrazzo2013-04-071-0/+1
* Static-type psycopg_escape_string connection parameterDaniele Varrazzo2013-04-051-2/+3
* Fixed leak of cancel key on connection.reset()Daniele Varrazzo2013-03-201-1/+0
* Notify and Xid objects and types renamed for consistencyDaniele Varrazzo2013-03-201-3/+3
* Added function conn_close_locked()Daniele Varrazzo2012-10-061-0/+1
* More functions annotated for static analysisDaniele Varrazzo2012-03-011-2/+2
* Use more compact macros to annotate functions for the static checkerDaniele Varrazzo2012-03-011-14/+7
* Use the newly provided attributes to validate exceptions raisingDaniele Varrazzo2012-03-011-0/+7
* Put back a distinct ISOLATION_LEVEL_READ_UNCOMMITTED valueDaniele Varrazzo2011-12-151-0/+7
* Method set_transaction() renamed to set_session()Daniele Varrazzo2011-06-081-1/+1
* Merge branch 'guc-cleanup' into develDaniele Varrazzo2011-06-051-2/+3
|\
| * Use the pqpath functions to get/set GUC parametersDaniele Varrazzo2011-06-051-2/+3
* | Avoid a deadlock using concurrent green threads on the same connectionDaniele Varrazzo2011-06-051-1/+4
|/
* Dropped isolation level from the connection objectDaniele Varrazzo2011-06-031-11/+7
* Added autocommit property on connectionDaniele Varrazzo2011-06-021-0/+2
* Added partial implementation for set_transactionDaniele Varrazzo2011-06-011-0/+9
* Use all the isolation levels accepted by PostgreSQLDaniele Varrazzo2011-05-111-3/+5
* Set hidden visibility to a few functions not publicDaniele Varrazzo2011-02-191-0/+2
* Merge branch 'python2' into python3Daniele Varrazzo2011-01-031-1/+2
|\
| * Broken circular reference in async executionDaniele Varrazzo2011-01-031-1/+1
| * The connection is weakly referenceableDaniele Varrazzo2011-01-031-0/+1
* | Added utility method to return a string in the connection encoding.Daniele Varrazzo2010-12-311-0/+1
* | Added Python codec name to the connection.Daniele Varrazzo2010-12-211-0/+1
* | Internal imports simplified.Daniele Varrazzo2010-12-121-5/+0
|/
* Support query cancellation.Jan Urbański2010-11-281-0/+1
* Added enum with possilbe isolation level states.Daniele Varrazzo2010-11-181-0/+7
* Don't run a query at connection to detect client encoding.Daniele Varrazzo2010-11-161-3/+0
* Raise NotSuppoertdError if tpc is used with PostgreSQL < 8.1Daniele Varrazzo2010-11-051-0/+9
* Added tpc_recover method.Daniele Varrazzo2010-11-051-0/+1
* Added tpc_prepare and CONN_STATUS_PREPARED.Daniele Varrazzo2010-11-051-3/+12
* begin and commit can't be called during a two-phase transaction.Daniele Varrazzo2010-11-051-0/+5
* Added tpc_begin() and current xid on connection.Daniele Varrazzo2010-11-051-0/+4
* poll implementation for async, sync and green connection unified.Daniele Varrazzo2010-04-231-16/+1
* Reusable parts of the green polling refactored out.Daniele Varrazzo2010-04-231-1/+6
* Functions to poll in ready state moved on the connection.Daniele Varrazzo2010-04-231-0/+2
* Functions conn_poll_* renamed to conn_poll_connect_*.Daniele Varrazzo2010-04-231-2/+2
* Added poll implementation for sync connection with external wait.Daniele Varrazzo2010-04-211-0/+2
* Notifications are automatically read after each query.Daniele Varrazzo2010-04-211-0/+1
* Remove fileno() and poll() from cursorsJan Urbański2010-04-211-0/+1
* Set the execution status to ASYNC_READ after flushing all output.Jan Urbański2010-04-141-0/+1
* Make the first poll() of an asynchronous connection return POLL_WRITE.Jan Urbański2010-04-141-0/+1
* NOTIFYs fix and poll status changesFederico Di Gregorio2010-04-051-3/+2