Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Build the namedtuple only once per execution, not once per fetch. | Daniele Varrazzo | 2010-11-11 | 1 | -3/+23 | |
| | ||||||
* | Avoid pointless string manipulation in NamedTupleCursor. | Daniele Varrazzo | 2010-11-09 | 1 | -2/+1 | |
| | | | | Closes ticket #10. Reported by Marko Kreen. | |||||
* | Added NamedTupleCursor. | Daniele Varrazzo | 2010-11-06 | 1 | -0/+55 | |
| | ||||||
* | Hstore documentation improved. | Daniele Varrazzo | 2010-11-05 | 1 | -13/+17 | |
| | ||||||
* | Added some documentation for the hstore adaptation. | Daniele Varrazzo | 2010-11-05 | 1 | -6/+6 | |
| | ||||||
* | The hstore typecast can be registered globally. | Daniele Varrazzo | 2010-11-05 | 1 | -27/+40 | |
| | ||||||
* | Favour the PG9 implementation of the hstore adapter. | Daniele Varrazzo | 2010-11-05 | 1 | -5/+5 | |
| | ||||||
* | Hstore can return unicode keys and values. | Daniele Varrazzo | 2010-11-05 | 1 | -5/+26 | |
| | ||||||
* | Correctly parse escaped quotes from hstore. | Daniele Varrazzo | 2010-11-05 | 1 | -9/+4 | |
| | | | | Parse regexp simplified. | |||||
* | Added special cases to store empty dicts. | Daniele Varrazzo | 2010-11-05 | 1 | -0/+6 | |
| | ||||||
* | Added hstore typecaster registration. | Daniele Varrazzo | 2010-11-05 | 1 | -0/+43 | |
| | ||||||
* | parse_hstore converted in class method. | Daniele Varrazzo | 2010-11-05 | 1 | -50/+52 | |
| | ||||||
* | Added function to parse an hstore into a dict. | Daniele Varrazzo | 2010-11-05 | 1 | -1/+51 | |
| | ||||||
* | Added implementation of python dict adapter to hstore. | Daniele Varrazzo | 2010-11-05 | 1 | -0/+43 | |
| | ||||||
* | The Inet type knows how to adapt itself. | Daniele Varrazzo | 2010-09-25 | 1 | -1/+4 | |
| | | | | | Implemented __conform__ as the Adaptation PEP suggests. It is not required for the type to be registered as adapter. | |||||
* | Added deprecation warning to register_tstz_w_secs | Federico Di Gregorio | 2010-07-13 | 1 | -1/+2 | |
| | ||||||
* | Dropped register_tstz_w_secs() implementation. | Daniele Varrazzo | 2010-05-20 | 1 | -45/+7 | |
| | | | | | The function is no-op now that the default type caster can deal with seconds in the tz offset. | |||||
* | Changed 'psyco_wait()' to only take the connection. | Daniele Varrazzo | 2010-04-21 | 1 | -3/+2 | |
| | ||||||
* | Added wait callback and functions to deal with it. | Daniele Varrazzo | 2010-04-21 | 1 | -0/+24 | |
| | ||||||
* | Make asynchronous connections produce asynchronous cursors by default | Jan UrbaĆski | 2010-04-05 | 1 | -8/+8 | |
| | | | | | | | | | | | Drop the async kwarg from cursor.execute(), cursors created by asynchronous connections will be asynchronous by default, ones created by synchronous connections will be synchronous. Mind that this might break third party subclasses of psycopg2.extensions.cursor, if they try to chain to the superclass in their execute() implementation and are passing the async kwarg. The example cursors in psycopg2.extras have been fixed no to do that. | |||||
* | Use the default role for cross referencing Python objects. | Daniele Varrazzo | 2010-02-26 | 1 | -7/+7 | |
| | ||||||
* | Typo fixed in DictRow doc. | Daniele Varrazzo | 2010-02-16 | 1 | -1/+1 | |
| | ||||||
* | Inet adapter fixed. | Daniele Varrazzo | 2010-02-14 | 1 | -1/+5 | |
| | ||||||
* | Added documentation for the extras module. | Daniele Varrazzo | 2010-02-14 | 1 | -20/+29 | |
| | ||||||
* | Fixed Inet constructor. | Daniele Varrazzo | 2010-02-14 | 1 | -1/+1 | |
| | ||||||
* | Stop the loop variable used to create __all__ leaking in the module. | Daniele Varrazzo | 2010-02-14 | 1 | -1/+1 | |
| | ||||||
* | Changes license to LGPL3 + OpenSSL exception on all source files | Federico Di Gregorio | 2010-02-12 | 1 | -9/+17 | |
| | ||||||
* | Fixed register_tstz_w_secs() error | Federico Di Gregorio | 2010-02-10 | 1 | -1/+1 | |
| | ||||||
* | Added support for UUID arrays | Federico Di Gregorio | 2009-10-04 | 1 | -3/+24 | |
| | ||||||
* | Fixed bug in RealDictCursor when prefetching | Federico Di Gregorio | 2009-05-09 | 1 | -22/+39 | |
| | ||||||
* | Applied DictRow "diet" patch | Federico Di Gregorio | 2009-05-09 | 1 | -0/+5 | |
| | ||||||
* | Added missing dict methods in DictRow | Federico Di Gregorio | 2009-04-19 | 1 | -0/+11 | |
| | ||||||
* | Support for seconds in time zone offsets | Federico Di Gregorio | 2009-03-02 | 1 | -0/+49 | |
| | ||||||
* | Fixed error in register_type() | Federico Di Gregorio | 2009-03-02 | 1 | -10/+15 | |
| | ||||||
* | Removed some spurious tabs | Federico Di Gregorio | 2009-02-23 | 1 | -6/+5 | |
| | ||||||
* | Added inet support | Federico Di Gregorio | 2008-09-24 | 1 | -2/+37 | |
| | ||||||
* | Support for NULLs in UUID | Federico Di Gregorio | 2008-09-23 | 1 | -2/+2 | |
| | ||||||
* | Added suppport for UUID and related test. | Federico Di Gregorio | 2008-09-19 | 1 | -1/+42 | |
| | ||||||
* | Added name parameters to .cursor() calls in extras. | Federico Di Gregorio | 2007-09-01 | 1 | -9/+21 | |
| | ||||||
* | Added RealDictCursor from #143. | Federico Di Gregorio | 2007-01-16 | 1 | -35/+91 | |
| | ||||||
* | Moved SQL_IN to extensions and away from extras. | Federico Di Gregorio | 2007-01-16 | 1 | -24/+0 | |
| | ||||||
* | Added iteritem method to DictRow. | Federico Di Gregorio | 2006-10-06 | 1 | -0/+3 | |
| | ||||||
* | Fixed syntax error in extras module (closes: #123). | Federico Di Gregorio | 2006-09-10 | 1 | -1/+2 | |
| | ||||||
* | First half of 8.1.4 securiy patch. | Federico Di Gregorio | 2006-05-24 | 1 | -1/+8 | |
| | ||||||
* | DictCursor now support iteration. | Federico Di Gregorio | 2006-03-08 | 1 | -1/+8 | |
| | ||||||
* | Tab removed | Daniele Varrazzo | 2006-01-21 | 1 | -1/+1 | |
| | ||||||
* | Logging connection/cursor implementation inspired by #90. | Federico Di Gregorio | 2006-01-20 | 1 | -0/+101 | |
| | ||||||
* | Whitespace cleanup. | Federico Di Gregorio | 2006-01-06 | 1 | -11/+9 | |
| | ||||||
* | Better DictCursor. | Federico Di Gregorio | 2005-12-06 | 1 | -0/+6 | |
| | ||||||
* | Better docstrings for lib/ modules. | Federico Di Gregorio | 2005-10-18 | 1 | -2/+2 | |
| |