summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Document the psycopg2-binary packageseparate-binaryDaniele Varrazzo2018-01-161-98/+100
|
* 'key' docs in getconn() improvedDaniele Varrazzo2018-01-111-1/+6
| | | | Fix #569.
* Added PostgreSQL 10 in the list of supported serversDaniele Varrazzo2017-11-061-1/+1
|
* Further docs cleanupDaniele Varrazzo2017-11-065-20/+40
| | | | | | Recent Sphinx versions seem overly aggressive in autodetecting python, or I just didn't notice the errors, so be explicit in what language to use with code examples.
* Parameters passing docs improvedDaniele Varrazzo2017-11-061-18/+35
| | | | | | | | | | | | | Every point has an example and all the example show wrong/correct. Nice rhythm. Among the improvements, added point saying explicitly "thou shall not quote placeholders". Quoted placeholders will just fail except in the most contrived cases (a statement raising an exception with all the strings except with the attack ones...), and an example in the following section explicitly notes "no quotes", but apparenty someone still thinks this is not documented enough? (see issue #611) so let's just write it plain and clear into the list of commandments.
* Dropped suggestion for --no-binary :all: to skip wheelsDaniele Varrazzo2017-10-271-5/+22
| | | | | | :all: applies to the entire file. --no-binary psycopg2 is the solution. See issue #543
* Parse PG 10 error codes from final versionDaniele Varrazzo2017-10-191-1/+1
|
* Dropped doc building warningDaniele Varrazzo2017-10-181-1/+1
| | | | doctests have sure completely rotten however.
* Sphinx version do build docs updated to 1.6Daniele Varrazzo2017-10-181-2/+2
|
* Make dbapi_extension.py compatible with Sphinx 1.6Dmitry Shachnev2017-10-121-7/+6
| | | | | | In Sphinx commit 1a821b89e9952fc2, the deprecated make_admonition() function was removed. This commit updates the code to use the modern API instead.
* Disable uploading docs on pythonhostedDaniele Varrazzo2017-08-232-167/+1
| | | | | | | The service is deprecated in favour of RTD. There is also no more way to upload redirects there, so #581 cannot be fixed. Official docs are on http://initd.org/psycopg/docs/
* Fixed typo (found on stackoverflow... gh)Daniele Varrazzo2017-07-271-1/+1
|
* Accept Composable in start_replication_expert()Daniele Varrazzo2017-06-171-2/+7
| | | | Close #554
* Document that executemany() is not logged with LoggingConnectionSebastian Bank2017-06-151-0/+5
|
* Document incompatibility between wheel package and ssl moduleDaniele Varrazzo2017-06-151-3/+12
| | | | Close #543.
* typo山楂片2017-06-121-1/+1
| | | s/fromat/format/g
* Updated docs about versions supported in errcodesDaniele Varrazzo2017-06-051-1/+1
|
* Added doc link to replication commandsDaniele Varrazzo2017-05-101-2/+5
|
* Expose *DATETIMETZ* objects in the extensions moduleDaniele Varrazzo2017-03-221-0/+6
|
* Dropped info that the features requires libpq >= 9.0Daniele Varrazzo2017-03-201-2/+0
| | | | | | We are currently requiring libpq 9.1 at least, and the feature was released in 2.7, which could have never been compiled with previos libpq versions.
* Merge branch 'fix-528'Daniele Varrazzo2017-03-161-0/+3
|\
| * Obscure the password on url dsn tooDaniele Varrazzo2017-03-161-0/+3
| | | | | | | | | | | | Note that we don't leak anymore the password length. Fix #528
* | Added docs about the usability of sql objects with copy_expert()sql-copyDaniele Varrazzo2017-03-162-1/+9
|/ | | | See issue #529.
* Improved notes to release psycopg packagesDaniele Varrazzo2017-03-131-15/+45
|
* Less stuff in the readme, more in the docsDaniele Varrazzo2017-03-131-0/+7
|
* Report ticket 518 fixedDaniele Varrazzo2017-03-111-8/+11
| | | | | The fix is actually implemented in the openssl1 branch of https://github.com/psycopg/psycopg2-wheels
* correct minor grammatical issue with deprecation warningJon Nelson2017-03-031-1/+1
|
* Added install section to specify how to skip wheelsDaniele Varrazzo2017-03-031-7/+39
|
* Added docs about making a releaseDaniele Varrazzo2017-03-011-0/+74
| | | | | | Drop previous script which didn't include the CI-generated packages. [skip ci]
* Fixed doc typoDaniele Varrazzo2017-02-281-1/+1
| | | | Close #515
* Dropped reference to "isolation level autocommit" in docsDaniele Varrazzo2017-02-241-2/+2
|
* Document installation from wheel packagesDaniele Varrazzo2017-02-161-145/+77
|
* Added readonly and deferrable attributesDaniele Varrazzo2017-02-161-6/+29
|
* Revert pre-2.7b1 behaviour of silent rollback on conn.set_isolation_level()Daniele Varrazzo2017-02-161-8/+3
| | | | Legacy method is legacy.
* connection.isolation_level is now writableDaniele Varrazzo2017-02-161-16/+22
|
* 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
| |/