| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix typo in Usage.html page in documentationHEADmaster | Amirsoroush | 2023-04-23 | 1 | -1/+1 |
| | | |||||
| * | docs: drop use of print statement, use the print() function instead | Daniele Varrazzo | 2023-04-17 | 1 | -5/+5 |
| | | | | | Close #1556 | ||||
| * | Fix typo in large object usage documentation | Will Thompson | 2021-11-21 | 1 | -1/+1 |
| | | |||||
| * | Add docs anchor to reach the 'with' statement from psycopg3 docs | Daniele Varrazzo | 2021-07-14 | 1 | -0/+2 |
| | | |||||
| * | Use datetime.timezone as default tzinfo_factory. | Daniele Varrazzo | 2021-06-15 | 1 | -7/+9 |
| | | |||||
| * | Drop support for mx.DateTime objects | Daniele Varrazzo | 2021-06-14 | 1 | -3/+1 |
| | | | | | They are Python 2 only. | ||||
| * | Handle correctly timestamps with fractions of minute in the timezone offset | Daniele Varrazzo | 2021-06-14 | 1 | -10/+18 |
| | | | | | Close #1272. | ||||
| * | 'with' starts a transaction even on autocommit connections | Daniele Varrazzo | 2021-05-24 | 1 | -0/+3 |
| | | | | | Close #941 | ||||
| * | Minor spelling and grammar corrections for 195b254 | Daniel Fortunov | 2020-09-06 | 1 | -3/+3 |
| | | |||||
| * | Improve wording around transactions behaviour closing connections | Daniele Varrazzo | 2020-09-05 | 1 | -4/+8 |
| | | | | | | | | The transaction is not rolled back by the connection, rather discarded by the server. Close #1135. | ||||
| * | Fix typo | Francisco Couzo | 2020-05-07 | 1 | -1/+1 |
| | | |||||
| * | Mention CALL on stored procedures using transaction in autocommit | Daniele Varrazzo | 2020-05-05 | 1 | -1/+4 |
| | | | | | | Close #1072 - I prefer to mention them where there is a discussion of the feature rather than in the method or const values section. | ||||
| * | Highlight in docs that the context manager doesn't close the connection | Daniele Varrazzo | 2019-04-07 | 1 | -3/+13 |
| | | | | | | Code as in #889 is not robust, but the behaviour is actually counter-intuitive. | ||||
| * | Add time type conversion info to docs | Andrew Rabert | 2019-03-24 | 1 | -0/+23 |
| | | |||||
| * | Added documentation for BYTES casterregister-bytes | Daniele Varrazzo | 2019-01-18 | 1 | -1/+17 |
| | | |||||
| * | Merge branch 'master' into https | Daniele Varrazzo | 2018-10-10 | 1 | -0/+21 |
| |\ | |||||
| | * | Fix RST markup | Alan D Moore | 2018-10-08 | 1 | -1/+1 |
| | | | |||||
| | * | Added note about backslashes and LIKE | Alan D Moore | 2018-10-08 | 1 | -0/+21 |
| | | | | | | | | | | | Added note about the use of LIKE with strings containing backslashes. Addresses concern in issue #785. | ||||
| * | | Prefer https:// URLs when available | Jon Dufresne | 2018-09-22 | 1 | -18/+18 |
| |/ | |||||
| * | Drop long deprecated function register_tstz_w_secs() | Jon Dufresne | 2017-12-10 | 1 | -2/+1 |
| | | | | | | | | | | | Deprecated in commit b263fbf274f9085a1bddca018ed8a50d37023fc7 on 2010-01-13. The deprecation warning was first released in version 2.2.2. The function used to register an alternate type caster for TIMESTAMP WITH TIME ZONE to deal with historical time zones with seconds in the UTC offset. These are now correctly handled by the default type caster, so currently the function doesn't do anything. | ||||
| * | Trim trailing whitespace from all files throughout project | Jon Dufresne | 2017-12-01 | 1 | -1/+0 |
| | | | | | | | Many editors automatically trim whitespace on save. By trimming all files in one go, makes future diffs cleaner without extraneous whitespace changes. | ||||
| * | Documentation tweaked to omit Python 2.6 distinctions | Daniele Varrazzo | 2017-11-28 | 1 | -8/+6 |
| | | |||||
| * | Further docs cleanup | Daniele Varrazzo | 2017-11-06 | 1 | -16/+28 |
| | | | | | | | 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 improved | Daniele Varrazzo | 2017-11-06 | 1 | -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. | ||||
| * | typo | 山楂片 | 2017-06-12 | 1 | -1/+1 |
| | | | | s/fromat/format/g | ||||
| * | Dropped reference to "isolation level autocommit" in docs | Daniele Varrazzo | 2017-02-24 | 1 | -2/+2 |
| | | |||||
| * | Added documentation about the changes in transaction control | Daniele Varrazzo | 2017-02-04 | 1 | -2/+1 |
| | | |||||
| * | More doc love for the sql module | Daniele Varrazzo | 2017-01-01 | 1 | -3/+4 |
| | | |||||
| * | conn->codec rename to pyenc | Daniele Varrazzo | 2016-12-26 | 1 | -1/+1 |
| | | |||||
| * | Added ipaddress objects conversion | Daniele Varrazzo | 2016-10-11 | 1 | -1/+4 |
| | | | | | Close #387 | ||||
| * | Wordsmithing on COPY commands | Daniele Varrazzo | 2016-07-01 | 1 | -1/+9 |
| | | | | | Address somehow issue #397. | ||||
| * | Change "non desiderable" to "undesirable" in docs | Pete Hollobon | 2015-06-02 | 1 | -1/+1 |
| | | | | | "desiderable" is considered obsolete | ||||
| * | Improve docs about connection's with only closing the transaction | Daniele Varrazzo | 2015-05-03 | 1 | -3/+18 |
| | | |||||
| * | Document that LO64 is only available on Py 64 builds | Daniele Varrazzo | 2015-02-08 | 1 | -5/+7 |
| | | |||||
| * | Merge branch 'timetz' | Daniele Varrazzo | 2014-12-25 | 1 | -2/+3 |
| |\ | |||||
| | * | timetz adaptation documented | Daniele Varrazzo | 2014-12-25 | 1 | -2/+3 |
| | | | |||||
| * | | Added documentation about the lo64 support | Daniele Varrazzo | 2014-12-25 | 1 | -0/+12 |
| |/ | |||||
| * | In 2010 I couldn't speak English | Daniele Varrazzo | 2014-09-16 | 1 | -11/+13 |
| | | |||||
| * | Use bytestrings in infinite dates adapter example | Daniele Varrazzo | 2013-10-21 | 1 | -2/+2 |
| | | | | | Returning strings would result in unclear tracebacks on Py3 (see ticket #163). | ||||
| * | Document that using %, (, ) in the placeholder name is not supported | Daniele Varrazzo | 2013-10-16 | 1 | -1/+2 |
| | | |||||
| * | Fixed doc index entry for infinite dates | Daniele Varrazzo | 2013-06-23 | 1 | -1/+1 |
| | | |||||
| * | Added doc example to convert date.max to infinity | Daniele Varrazzo | 2013-06-18 | 1 | -0/+35 |
| | | | | | See issue #163. | ||||
| * | A few docs fixes to the usage page | Daniele Varrazzo | 2013-05-01 | 1 | -6/+6 |
| | | |||||
| * | Fix multiple misspellings | Piotr Kasprzyk | 2013-04-26 | 1 | -1/+1 |
| | | |||||
| * | Added summary data types conversion table to the docs | Daniele Varrazzo | 2013-03-18 | 1 | -166/+269 |
| | | | | | | It allows looking at a glance both basic and extended type casters, with plenty of links to the detailed explanations. | ||||
| * | Fixed interactive sessions docs examples | Daniele Varrazzo | 2013-01-09 | 1 | -2/+2 |
| | | |||||
| * | Added documentation for the with statement | Daniele Varrazzo | 2012-12-03 | 1 | -0/+24 |
| | | |||||
| * | Fixed a couple of terms in the docs | Daniele Varrazzo | 2012-11-12 | 1 | -2/+2 |
| | | | | | After Pierre-Louis Bonicoli's suggestions in ticket #138. | ||||
| * | Added install section to the manual | Daniele Varrazzo | 2012-10-07 | 1 | -0/+2 |
| | | |||||
| * | Fixed note on rollback on close in the doc | Daniele Varrazzo | 2012-09-18 | 1 | -1/+1 |
| | | | | | | It's not like we call "rollback()": we close the connection and the backend rolls back on its own. It may have differences, e.g. conn poolers. | ||||
