summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
...
* Link COPY from docs index to our docs instead of postgres onesDaniele Varrazzo2017-02-161-3/+1
|
* SQL links not bold in the docsDaniele Varrazzo2017-02-161-0/+5
| | | | Consistent with the SQL representation not linked.
* Fixed argument name in executemany docsDaniele Varrazzo2017-02-081-1/+1
|
* Dropped references to prepare in cur.execute[many] docsDaniele Varrazzo2017-02-081-6/+5
| | | | They were copied from the DBAPI spec but that's not how psycopg works.
* Merge branch 'no-set-default-session'Daniele Varrazzo2017-02-073-16/+74
|\
| * Added documentation about the changes in transaction controlDaniele Varrazzo2017-02-043-21/+70
| |
| * Exposing ISOLATION_LEVEL_DEFAULT to PythonDaniele Varrazzo2017-02-041-0/+9
| | | | | | | | | | This is now the state that is returned to Python if nothing has been explicitly set.
* | Dropped support for Python 3.1Daniele Varrazzo2017-02-061-1/+1
|/
* Merge branch 'master' into sql-composesql-composeDaniele Varrazzo2017-02-038-11/+85
|\
| * Merge branch 'async-keyword'Daniele Varrazzo2017-02-033-1/+11
| |\ | | | | | | | | | Close #495
| | * Added docs for async_ aliasDaniele Varrazzo2017-02-033-1/+11
| | |
| * | Merge branch 'fast-executemany'Daniele Varrazzo2017-02-022-6/+68
| |\ \ | | |/ | |/|
| | * Added notes about using execute_batch with prepared statementsDaniele Varrazzo2017-02-021-0/+32
| | |
| | * Added execute_batch and execute_values functionsDaniele Varrazzo2017-02-012-6/+36
| | |
| * | Fixed sql docs style with newer Docutils versionsDaniele Varrazzo2017-02-011-0/+2
| |/
| * Consider Python 3.6 and Postgres 9.6 supportedDaniele Varrazzo2017-01-031-2/+2
| |
| * Using the new name of the old doc templateDaniele Varrazzo2017-01-012-2/+2
| |
* | Several improvements to the sql objectsDaniele Varrazzo2017-01-031-0/+20
| | | | | | | | Comparable, iterable, content accessible
* | Use {} instead of %s placeholders in SQL compositionDaniele Varrazzo2017-01-031-1/+2
| |
* | More doc love for the sql moduleDaniele Varrazzo2017-01-013-5/+24
| |
* | Added missing doc fileDaniele Varrazzo2017-01-011-0/+68
| |
* | Adding sql module documentationDaniele Varrazzo2017-01-011-0/+1
|/
* conn->codec rename to pyencDaniele Varrazzo2016-12-262-2/+2
|
* Mention named callproc in news, fixed docs.Daniele Varrazzo2016-12-261-2/+3
|
* Merge branch 'master' into named-callprocDaniele Varrazzo2016-12-2610-80/+673
|\
| * Fixed intersphinx links to Pyton docsDaniele Varrazzo2016-12-251-2/+2
| |
| * fix wait_select sample to be `extras` not `extensions`Luke Nezda2016-12-251-1/+1
| |
| * Added ipaddress objects conversionDaniele Varrazzo2016-10-113-15/+23
| | | | | | | | Close #387
| * Conver network array types into array of strings by defaultDaniele Varrazzo2016-10-111-6/+18
| |
| * inet adapters deprecatedDaniele Varrazzo2016-10-111-2/+3
| | | | | | | | Close #343
| * Enforce dependency on libpq version >= 9.1Daniele Varrazzo2016-08-151-1/+2
| | | | | | | | | | | | | | | | PGRES_COPY_BOTH was introduced in 9.1: we can ifdef the hell out of pgpath, but we may as well bury the dead horses instead of beating them. They smell funny, too.
| * Stop compiling with Python 2.5Daniele Varrazzo2016-08-151-1/+1
| |
| * Merge branch 'replication-protocol'Daniele Varrazzo2016-08-142-1/+456
| |\
| | * Name the db in the replication test like the unit test oneDaniele Varrazzo2016-08-141-3/+3
| | |
| | * Replication docs massaging, mostly formattingDaniele Varrazzo2016-08-072-11/+13
| | |
| | * Reshuffling and indexing of replication docsDaniele Varrazzo2016-08-072-72/+97
| | |
| | * Merge branch 'master' into replication-protocolDaniele Varrazzo2016-08-076-8/+60
| | |\ | | | | | | | | | | | | | | | | Conflicts: tests/testconfig.py
| | * | Remove duplicated doc for make_dsn()Oleksandr Shulgin2016-03-081-22/+0
| | | |
| | * | Merge branch 'master' into feature/replication-protocol-c-connection-objectOleksandr Shulgin2016-03-043-58/+122
| | |\ \
| | * \ \ Merge branch 'feature/connect2' into feature/replication-protocolOleksandr Shulgin2015-10-271-0/+22
| | |\ \ \
| | | * | | Rework psycopg2.connect() interface.Oleksandr Shulgin2015-10-271-0/+22
| | | | | |
| | * | | | Drop ReplicationCursor.flush_feedback(), rectify pq_*_replication_*() interface.Oleksandr Shulgin2015-10-231-16/+0
| | | | | |
| | * | | | Improve async replication example.Oleksandr Shulgin2015-10-231-8/+9
| | | | | |
| | * | | | Move the `decode` parameter to `start_replication()`.Oleksandr Shulgin2015-10-231-32/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It makes more sense this way, because otherwise it must be passed to every call of `read_message()`.
| | * | | | Add quick start to the replication doc, minor doc fixes.Oleksandr Shulgin2015-10-201-89/+159
| | | | | |
| | * | | | Properly subclass ReplicationCursor on C level.Oleksandr Shulgin2015-10-191-26/+24
| | | | | |
| | * | | | Replace stop_replication with requirement for an exception.Oleksandr Shulgin2015-10-191-11/+7
| | | | | |
| | * | | | Merge branch 'master' into feature/replication-protocolOleksandr Shulgin2015-10-153-0/+47
| | |\ \ \ \ | | | |/ / /
| | * | | | Fix select/timeout indication in async replication exampleOleksandr Shulgin2015-10-141-2/+2
| | | | | |
| | * | | | Update stop_repl, require replication consumer to be a callable.Oleksandr Shulgin2015-10-141-16/+17
| | | | | |