summaryrefslogtreecommitdiff
path: root/psycopg/connection_type.c
Commit message (Expand)AuthorAgeFilesLines
* Obscure the password on url dsn tooDaniele Varrazzo2017-03-161-8/+46
* Password scrubbing refactored in a separate functionfix-528Daniele Varrazzo2017-03-151-7/+18
* Check for deferrable unsupported applied to attribute tooDaniele Varrazzo2017-02-161-6/+0
* Added readonly and deferrable attributesDaniele Varrazzo2017-02-161-15/+112
* Revert pre-2.7b1 behaviour of silent rollback on conn.set_isolation_level()Daniele Varrazzo2017-02-161-1/+7
* connection.isolation_level is now writableDaniele Varrazzo2017-02-161-13/+53
* Set default_transaction_* GUC if session state is changed in autocomitDaniele Varrazzo2017-02-041-1/+1
* Reuse set_session to implement autocommit, set_isolation_levelDaniele Varrazzo2017-02-041-12/+26
* Better separation between interface and state change codeDaniele Varrazzo2017-02-041-7/+96
* Don't use default_transaction_* for session characteristicsDaniele Varrazzo2017-02-041-92/+15
* Added async_ as an alias for asyncDaniele Varrazzo2017-02-031-3/+7
* Don't look up for Python encodingDaniele Varrazzo2016-12-291-1/+0
* Use -1 instead of 0 to say "calculate the length" in many funcsDaniele Varrazzo2016-12-271-1/+1
* Store python encoding and decoding functions in the connectionDaniele Varrazzo2016-12-271-0/+6
* conn->codec rename to pyencDaniele Varrazzo2016-12-261-1/+1
* Merge branch 'conn-get-parameters'Daniele Varrazzo2016-07-011-0/+33
|\
| * Add connection.get_dsn_parameters()Oleksandr Shulgin2015-10-301-0/+33
* | Fixed segfault on repr() for uninitialized connectionsDaniele Varrazzo2016-07-011-1/+1
|/
* Allow connection.notices and notifies to be replaced.Daniele Varrazzo2015-06-021-2/+2
* Dropped unused notice_filter connection memberDaniele Varrazzo2015-06-021-2/+0
* Fixed connection.poll() docstringDaniele Varrazzo2015-05-031-1/+5
* Dropped PSYCOPG_EXTENSIONS flagDaniele Varrazzo2014-08-231-18/+0
* Name the types after the module they are exposed fromDaniele Varrazzo2014-08-151-3/+3
* Fixed explicit connection.cursor(cursor_factory=None)Daniele Varrazzo2014-04-301-5/+10
* Allow get_transaction_status on closed connectionsDaniele Varrazzo2014-04-051-2/+0
* Fixed overflow opening a lobject with an oid not fitting in a signed intDaniele Varrazzo2014-04-031-5/+5
* Fixed dsn and closed attributes in failing connection subclasses.Daniele Varrazzo2014-04-031-1/+1
* Untrack the connection before closing to avoid possible double-freeDaniele Varrazzo2013-06-201-2/+5
* Use NULL instead of an empty string as PyObject_CallMethod formatDaniele Varrazzo2013-04-071-2/+2
* Added cursor_factory connection attribute and connect() parameterDaniele Varrazzo2013-04-071-0/+6
* Use the Python heap for conn->dsnDaniele Varrazzo2013-04-061-5/+2
* Use the Py_RETURN_NONE macroDaniele Varrazzo2013-04-051-18/+9
* Some improvements to connection/cursor GCDaniele Varrazzo2013-03-211-12/+19
* PyType_GenericAlloc is the default allocator: no need to specifyDaniele Varrazzo2013-03-201-1/+1
* Fixed leak of cancel key on connection.reset()Daniele Varrazzo2013-03-201-0/+1
* Dropped "customized" pg_free functionsDaniele Varrazzo2013-03-201-25/+1
* Notify and Xid objects and types renamed for consistencyDaniele Varrazzo2013-03-201-3/+3
* Properly cleanup memory of broken connectionsDaniele Varrazzo2013-03-161-1/+1
* Make sure to call subclasses methods on context exitDaniele Varrazzo2012-12-031-2/+6
* Added support for with statement for connection and cursorDaniele Varrazzo2012-12-031-0/+48
* Fixed signature for METH_NOARGS functionsDaniele Varrazzo2012-12-031-12/+12
* Added support with cursors without scroll clauseDaniele Varrazzo2012-08-151-29/+24
* Added scrollable cursor implementationDaniele Varrazzo2012-08-151-3/+15
* Name can be passed as None to cursor()Daniele Varrazzo2012-04-111-23/+20
* Merge branch 'gcc-python-plugin' into develDaniele Varrazzo2012-03-051-11/+11
|\
| * Methods callbacks signatures match the flags they are exported withDaniele Varrazzo2012-03-051-6/+6
| * Stricter types usage in several PyArg_ParseTuple callsDaniele Varrazzo2012-03-041-2/+2
| * More functions annotated for static analysisDaniele Varrazzo2012-03-011-1/+1
| * Use more compact macros to annotate functions for the static checkerDaniele Varrazzo2012-03-011-2/+1
| * Use the newly provided attributes to validate exceptions raisingDaniele Varrazzo2012-03-011-1/+1