summaryrefslogtreecommitdiff
path: root/psycopg/connection_int.c
Commit message (Expand)AuthorAgeFilesLines
...
* Added autocommit property on connectionDaniele Varrazzo2011-06-021-1/+2
* Added partial implementation for set_transactionDaniele Varrazzo2011-06-011-0/+40
* Store a normalized version of the PG encoding in the connectionDaniele Varrazzo2011-04-081-19/+18
* Normalize the encoding name at connectionDaniele Varrazzo2011-04-081-9/+42
* Check for failed allocation in the notice callbackDaniele Varrazzo2011-02-241-0/+8
* More careful memory managementDaniele Varrazzo2011-02-231-2/+10
* Merge branch 'python2' into python3Daniele Varrazzo2011-01-031-3/+12
|\
| * Broken circular reference in async executionDaniele Varrazzo2011-01-031-3/+12
* | Merge branch 'python2' into python3Daniele Varrazzo2011-01-011-0/+4
|\ \ | |/
| * Don't segfault when PQparameterStatus(DateStyle) returns NULLMarti Raudsepp2010-12-181-0/+4
* | Fixed 2-phase commit support in Python 3.Daniele Varrazzo2010-12-311-1/+1
* | Function psycopg_ensure_bytes converted in a "filter" stealing a ref.Daniele Varrazzo2010-12-311-5/+4
* | Added utility method to return a string in the connection encoding.Daniele Varrazzo2010-12-311-6/+20
* | Use psycopg_ensure_bytes() to unify Py2/3 code paths.Daniele Varrazzo2010-12-311-14/+2
* | The library can be compiled with Python 3.Daniele Varrazzo2010-12-211-6/+29
* | Added Python codec name to the connection.Daniele Varrazzo2010-12-211-32/+94
* | Internal imports simplified.Daniele Varrazzo2010-12-121-5/+4
|/
* Support query cancellation.Jan UrbaƄski2010-11-281-0/+19
* Dropped notices hack to get COPY errors from V2 protocol.Daniele Varrazzo2010-11-221-15/+6
* Added enum with possilbe isolation level states.Daniele Varrazzo2010-11-181-15/+16
* Don't inconditionately run a query at connection to set datestyle to ISO.Daniele Varrazzo2010-11-161-23/+51
* Don't run a query at connection to detect client encoding.Daniele Varrazzo2010-11-161-65/+33
* Dropped support for protocol 2.Daniele Varrazzo2010-11-161-6/+0
* Refuse connection with server with protocol version 2.Daniele Varrazzo2010-11-161-0/+8
* Fixed notices order (ticket #9).Daniele Varrazzo2010-11-111-10/+19
* Fixed handling of commit/rollback prepared in green modeDaniele Varrazzo2010-11-051-0/+1
* xid_get_tid returns a Python string, not a buffer.Daniele Varrazzo2010-11-051-3/+5
* Keep the GIL while converting the xid into the PostgreSQL transaction id.Daniele Varrazzo2010-11-051-5/+14
* Added tpc_recover method.Daniele Varrazzo2010-11-051-0/+33
* Added tpc_prepare and CONN_STATUS_PREPARED.Daniele Varrazzo2010-11-051-0/+29
* Added tpc_begin() and current xid on connection.Daniele Varrazzo2010-11-051-0/+38
* Adding Notify object with payload.Daniele Varrazzo2010-11-051-8/+35
* Dropped PSYCOPG_OWN_QUOTING.Daniele Varrazzo2010-10-081-6/+0
* Fixed access to freed memory in conn_get_isolation_level().Daniele Varrazzo2010-10-081-4/+8
* Don't execute a ROLLBACK on close()/GC.Daniele Varrazzo2010-09-231-14/+11
* Micrsoft Visual C Compile FixJason Erickson2010-05-171-1/+2
* Keep the connection in blocking mode unless it is not async.Daniele Varrazzo2010-05-091-4/+6
* Simplified psyco_wait() function interface.Daniele Varrazzo2010-04-251-5/+1
* poll implementation for async, sync and green connection unified.Daniele Varrazzo2010-04-231-350/+153
* Added function to advance the state after flush attempt.Daniele Varrazzo2010-04-231-15/+30
* Added a function to advance the state after a read attempt.Daniele Varrazzo2010-04-231-23/+36
* Dropped curs_get_last_result function.Daniele Varrazzo2010-04-231-4/+18
* Reusable parts of the green polling refactored out.Daniele Varrazzo2010-04-231-75/+104
* Making sync and async connection setup somewhat more consistent.Daniele Varrazzo2010-04-231-29/+21
* Functions to poll in ready state moved on the connection.Daniele Varrazzo2010-04-231-2/+82
* Functions conn_poll_* renamed to conn_poll_connect_*.Daniele Varrazzo2010-04-231-14/+16
* Set the async_status to ASYNC_DONE after a query with wait callback.Daniele Varrazzo2010-04-211-1/+7
* Read the server version only after connection established.Daniele Varrazzo2010-04-211-2/+2
* Read notifications when polling an idle sync connection.Daniele Varrazzo2010-04-211-0/+18
* Use the wait callback in the connection setup queries.Daniele Varrazzo2010-04-211-11/+23