summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
...
* Docs cleanup by Josh KupershmidtDaniele Varrazzo2011-11-014-17/+17
|
* Fixed docs for the copy null parameterDaniele Varrazzo2011-10-201-2/+4
|
* Notice -> Note in the docs, and a handful of other typo fixedDaniele Varrazzo2011-10-144-9/+9
|
* Test and document the named cursor stealing techniqueDaniele Varrazzo2011-10-141-1/+33
|
* Fixed pasto in docsDaniele Varrazzo2011-10-061-1/+1
|
* Added new_array_type() functionDaniele Varrazzo2011-09-222-1/+21
| | | | Allows the creation of a generic array typecaster from Python.
* Fixed doc blocksDaniele Varrazzo2011-09-222-1/+4
| | | | Raise error with docutils 0.8.1. Probably docutils 0.7 was more lenient.
* WITH HOLD documentation a argument parsing changesFederico Di Gregorio2011-08-103-2/+31
| | | | Now any true value will do for the withhold parameter.
* Added documentation for putconn's close parameterDaniele Varrazzo2011-08-091-1/+3
|
* Fixed adaptation doc exampleDaniele Varrazzo2011-07-241-1/+1
| | | | Close ticket #63
* Aligned casing of isolation levels with PostgreSQL documentationFederico Di Gregorio2011-06-121-3/+3
|
* Introductory docs section on transaction control improvedDaniele Varrazzo2011-06-082-8/+18
| | | | | Added big fat warning about idle in transaction and reference to set_session().
* Method set_transaction() renamed to set_session()Daniele Varrazzo2011-06-082-3/+3
| | | | | | In fact it doesn't change "the transaction", as there has to be no transaction when invoked. The effect instead is to execute SET SESSION CHARACTERISTICS.
* Fixed documentation for COPY methodsDaniele Varrazzo2011-06-071-23/+30
| | | | The size parameter in copy_from was undocumented (ticket #59).
* Avoid a deadlock using concurrent green threads on the same connectionDaniele Varrazzo2011-06-052-7/+5
| | | | | Use the async_cursor property to store an indication that something is running (even if it is not necessarily a cursor running the query).
* Documentation for set_transaction() and autocommit improvedDaniele Varrazzo2011-06-032-8/+20
|
* Adding docs for the planned set_transaction/autocommit featuresDaniele Varrazzo2011-05-314-11/+86
|
* Added documentation for the bytea parserDaniele Varrazzo2011-03-262-12/+15
|
* Don't limit the hstore search to the public schema onlyDaniele Varrazzo2011-02-251-2/+2
| | | | | | Looks like there is a case for installing hstore somewhere else (see ticket #45). And after all the typecaster can be registered on a list of OIDs, so let's grab them all.
* Raise an exception if the libpq fails to decode bytea in hex formatDaniele Varrazzo2011-02-231-0/+3
|
* The cursor name can be a non-valid PostgreSQL identifierDaniele Varrazzo2011-02-231-4/+17
|
* Documentation cleanupDaniele Varrazzo2011-02-1911-112/+144
| | | | | Added several links to the Python documentation using the 'intersphinx' extension.
* Display a note as a note in the cursor.lastrowid docsDaniele Varrazzo2011-02-191-4/+6
|
* Cursor docs reorderedDaniele Varrazzo2011-02-191-31/+32
| | | | | 'cast()' moved in the retrieval functions. Methods only defined for DBAPI compliance moved to the bottom.
* Provide cursor.description as named tuple if possibleDaniele Varrazzo2011-02-191-4/+9
| | | | If namedtuple() is not available, use regular tuples.
* Improved documentation for cursor.descriptionDaniele Varrazzo2011-02-171-16/+24
| | | | | Describe what actually happens between Psycopg and PostgreSQL, not the basic template copied from the DBAPI.
* Added cursor.itersizeDaniele Varrazzo2011-02-172-12/+22
| | | | | | | The value is used to control the number of records to fetch per network roundtrip in named cursors iteration. Used to avoid the inefficient arraysize default of 1 without giving this value the magic meaning of 2000.
* Documentation about new support for binary objects improvedDaniele Varrazzo2011-02-161-2/+9
|
* Adapt bytearray and memoryview to bytes if availableDaniele Varrazzo2011-02-151-4/+19
|
* Added FAQ entry about the PYTHON_EGG_CACHE problemDaniele Varrazzo2011-02-151-2/+14
|
* Dropped reference to release 2.3.3 in the docsDaniele Varrazzo2011-02-154-7/+7
|
* Document difference of string handling in Python 2/3Daniele Varrazzo2011-02-102-15/+39
|
* Added FAQ point about bytea_output in PostgreSQL 9.0Daniele Varrazzo2011-02-101-0/+12
|
* Improved adaptation documentationDaniele Varrazzo2011-02-101-8/+27
| | | | Documented __conform__() and prepare().
* Merge branch 'python3' into python2Federico Di Gregorio2011-02-063-8/+40
|\
| * Added documentation for Unicode support in large objectDaniele Varrazzo2011-01-103-8/+40
| | | | | | | | Not implemented yet!
* | Fetch 'arraysize' records per roundtrip in named cursors iterationDaniele Varrazzo2011-02-051-0/+17
|/ | | | Closes ticket #33.
* Added PostgreSQL composite types typecaster to Python tuples.Daniele Varrazzo2011-01-022-1/+59
|
* Added cursor.cast() methodDaniele Varrazzo2011-01-011-14/+28
| | | | | The method exposes the typecasters lookup algorithm. Useful to create recursive typecasters.
* Added link to psycogreen.Daniele Varrazzo2010-12-021-0/+6
|
* Fixed index entries of green-related terms.Daniele Varrazzo2010-12-021-1/+5
|
* Typo/tenso fixed.Daniele Varrazzo2010-12-021-2/+2
|
* Added index entries under Adaptation for different objects.Daniele Varrazzo2010-12-021-5/+7
|
* Added documentation for ISQLQuote.prepare().Daniele Varrazzo2010-11-281-4/+18
|
* Mention query cancelling in the release notes.Daniele Varrazzo2010-11-281-1/+1
|
* Support query cancellation.Jan UrbaƄski2010-11-281-0/+20
| | | | | Add a cancel() method do the connection object that will interrupt the current query using the libpq PQcancel() function.
* Fixed docs: the execute argument must be a sequence, not a tuple.Daniele Varrazzo2010-11-192-2/+4
|
* Moved links to PG docs from 8.4 to 9.0.Daniele Varrazzo2010-11-171-2/+2
|
* Refuse connection with server with protocol version 2.Daniele Varrazzo2010-11-161-1/+3
| | | | | | | This cuts off server whose version is older than 7.4. But enables us to remove large portions of code rarely used and tested (e.g. p2 copy) and will allow us to drop the query we do at each connection to establish the client encoding and the datestyle.
* Added version info to Xid object docs.Daniele Varrazzo2010-11-081-0/+2
|