summaryrefslogtreecommitdiff
path: root/psycopg/pqpath.c
Commit message (Expand)AuthorAgeFilesLines
* Dropped redundant semicolons at the end of internal queriesDaniele Varrazzo2011-06-081-6/+6
* Merge branch 'guc-cleanup' into develDaniele Varrazzo2011-06-051-0/+92
|\
| * Added pqpath functions to get/set the value for GUC parametersDaniele Varrazzo2011-06-051-0/+92
* | Don't clobber an eventual Python exception set by a green threadDaniele Varrazzo2011-06-051-7/+7
|/
* Cleanup of notice processingDaniele Varrazzo2011-06-041-13/+17
* Process notifies when data is received, not when the result is parsedDaniele Varrazzo2011-06-041-2/+12
* Dropped isolation level from the connection objectDaniele Varrazzo2011-06-031-35/+18
* Added autocommit property on connectionDaniele Varrazzo2011-06-021-0/+5
* Use all the isolation levels accepted by PostgreSQLDaniele Varrazzo2011-05-111-0/+2
* Fixed SystemError clobbering libpq errors raised without SQLSTATEDaniele Varrazzo2011-04-241-0/+5
* Correctly detect an empty query sent to the backendDaniele Varrazzo2011-03-041-0/+7
* Fixed detection of empty error from pq_raiseDaniele Varrazzo2011-03-041-2/+6
* Fixed call of memory functions without the GILDaniele Varrazzo2011-02-231-0/+5
* Added error checking to _pq_fetch_tuples()Daniele Varrazzo2011-02-231-44/+78
* Stricter declaration and correct use of psyco_set_errorDaniele Varrazzo2011-02-211-2/+1
* Assume there may be files returning Unicode in Python 2 tooDaniele Varrazzo2011-02-191-3/+2
* Provide cursor.description as named tuple if possibleDaniele Varrazzo2011-02-191-3/+21
* COPY sends unicode to a file if it derives from io.TextIoBaseDaniele Varrazzo2011-02-051-1/+17
* Merge branch 'python2' into python3Daniele Varrazzo2011-01-101-0/+2
|\
| * Invalidate large objects after a two-phase commit operationDaniele Varrazzo2011-01-101-0/+2
* | Merge branch 'python2' into python3Daniele Varrazzo2011-01-031-4/+6
|\ \ | |/
| * Broken circular reference in async executionDaniele Varrazzo2011-01-031-4/+6
* | Merge branch 'python2' into python3Daniele Varrazzo2011-01-021-13/+1
|\ \ | |/
| * Added cursor.cast() methodDaniele Varrazzo2011-01-011-13/+1
* | Fixed COPY FROM to deal with decoded files.Daniele Varrazzo2010-12-311-6/+38
* | Added utility method to return a string in the connection encoding.Daniele Varrazzo2010-12-311-3/+2
* | The library can be compiled with Python 3.Daniele Varrazzo2010-12-211-5/+6
* | Internal imports simplified.Daniele Varrazzo2010-12-121-6/+3
* | Dropped unused include file.Daniele Varrazzo2010-12-121-1/+0
|/
* Added enum with possilbe isolation level states.Daniele Varrazzo2010-11-181-5/+10
* Dropped support for protocol 2.Daniele Varrazzo2010-11-161-145/+3
* Mention connection object in debug logsJean-Baptiste Quenot2010-11-131-3/+3
* Keep the GIL while converting the xid into the PostgreSQL transaction id.Daniele Varrazzo2010-11-051-6/+3
* Added tpc_prepare and CONN_STATUS_PREPARED.Daniele Varrazzo2010-11-051-2/+49
* Keep the connection in blocking mode unless it is not async.Daniele Varrazzo2010-05-091-43/+6
* poll implementation for async, sync and green connection unified.Daniele Varrazzo2010-04-231-0/+21
* Added a function to advance the state after a read attempt.Daniele Varrazzo2010-04-231-0/+21
* Added 'pq_get_last_result()' function.Daniele Varrazzo2010-04-231-0/+27
* 'pq_execute_command_locked()' calls the wait callback if set.Daniele Varrazzo2010-04-211-14/+29
* 'pq_execute()' uses the user wait callback if provided.Daniele Varrazzo2010-04-211-3/+13
* Notifications are automatically read after each query.Daniele Varrazzo2010-04-211-22/+3
* Dropped redundant call to conn_notice_process().Daniele Varrazzo2010-04-211-2/+0
* Fixed reference leak in notify reception.Daniele Varrazzo2010-04-211-0/+1
* Check for possible errors from PQflush.Jan Urbański2010-04-141-2/+10
* Free the GIL in blocking operations in V2 COPY FROM.Daniele Varrazzo2010-04-071-0/+5
* Ensure running COPY in blocking mode.Daniele Varrazzo2010-04-071-32/+75
* Added pq_set_non_blocking utility function.Daniele Varrazzo2010-04-071-0/+23
* Speedup of the copy functions.Daniele Varrazzo2010-04-071-15/+50
* Make some methods raise an exception in asynchronous modeJan Urbański2010-04-051-8/+0
* Ref the async cursor before storing it in the connectionJan Urbański2010-04-051-0/+2