summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/sqlite/pysqlite.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix cross referencespr/46Vraj Mohan2013-11-171-2/+2
|
* move FAQ to the docs, [ticket:2133]Mike Bayer2013-08-211-0/+2
|
* - add a test specific to sqlite testing cursor.description encoding (shouldMike Bayer2013-05-261-1/+2
| | | | | probably be one in test_query or test_unicode...) - fix up test_unitofwork
* sqlite testsMike Bayer2013-05-261-2/+0
|
* - the raw 2to3 runMike Bayer2013-04-271-3/+4
| | | | - went through examples/ and cleaned out excess list() calls
* happy new year (see #2645)Diana Clarke2013-01-011-1/+1
|
* just a pep8 pass of lib/sqlalchemy/dialects/sqliteDiana Clarke2012-11-191-49/+55
|
* - rework the sphinx customizations into distinct modulesMike Bayer2012-10-191-6/+9
| | | | | | | - build a new Sphinx extension that allows dialect info to be entered as directives which is then rendered consistently throughout all dialect/dbapi sections - break out the "empty_strings" requirement for oracle test
* some pysqlite doc tweaksMike Bayer2012-08-301-5/+10
|
* -whitespace bonanza, contdMike Bayer2012-07-281-19/+19
|
* Add some `Sphinx` paragraph level versions informations markups,Mike Bayer2012-06-081-6/+4
| | | | such as ``.. versionadded::``, ``.. versionchanged::`` and ``.. deprecated::``.
* happy new yearMike Bayer2012-01-041-1/+1
|
* fix a whole bunch of note:: / warning:: that were inline,Mike Bayer2011-12-251-4/+6
| | | | no longer compatible with docutils 0.8
* add BEGIN workaround to pysqlite docs, [ticket:2219]Mike Bayer2011-12-061-0/+25
|
* marathon doc updating session including a rewrite of unicode paragraphsMike Bayer2011-12-041-9/+8
|
* - Failures on connect which raise dbapi.ErrorMike Bayer2011-07-011-1/+2
| | | | | | | | | | | | will forward the error to dialect.is_disconnect() and set the "connection_invalidated" flag if the dialect knows this to be a potentially "retryable" condition. Only Oracle ORA-01033 implemented for now. [ticket:2201] - Added ORA-01033 to disconnect codes, which can be caught during a connection event. [ticket:2201]
* - document that pysqlite does not share temporary tablesMike Bayer2011-06-291-0/+29
| | | | | across multiple connections therefore a non-standard pool should be used [ticket:2203]
* sqlite :memory: works across threads now hooray !Mike Bayer2011-06-201-24/+42
|
* - The path given as the location of a sqlite database is nowMike Bayer2011-02-101-0/+3
| | | | | | normalized via os.path.abspath(), so that directory changes within the process don't affect the ultimate location of a relative file path. [ticket:2036]
* - add connection and cursor to is_disconnect(). We aren't using it yet,Mike Bayer2011-02-091-1/+1
| | | | | | | | | | | | | | | but we'd like to. Most DBAPIs don't give us anything we can do with it. Some research was done on psycopg2 and it still seems like they give us no adequate method (tried connection.closed, cursor.closed, connection.status). mxodbc claims their .closed attribute will work (but I am skeptical). - remove beahvior in pool that auto-invalidated a connection when the cursor failed to create. That's not the pool's job. we need the conn for the error logic. Can't get any tests to fail, curious why that behavior was there, guess we'll find out (or not). - add support for psycopg2 version detection. even though we have no use for it yet... - adjust one of the reconnect tests to work with oracle's horrendously slow connect speed
* - whitespace removal bonanzaMike Bayer2011-01-021-9/+9
|
* - clean up copyright, update for 2011, stamp every file withMike Bayer2011-01-021-0/+6
| | | | | a consistent tag - AUTHORS file
* Ridding the world of a few wasteful imports.Michael Trier2010-12-191-2/+1
|
* - NullPool is now used by default for SQLite file-Mike Bayer2010-11-281-21/+23
| | | | | | based databases. :memory: databases will continue to select SingletonThreadPool by default. [ticket:1921]
* doc editsMike Bayer2010-09-231-3/+4
|
* clean up sqlite version detection stuffMike Bayer2010-03-261-7/+2
|
* - name all the "sub" dialect components <DB><component>_<dialectname>, ↵Mike Bayer2010-03-141-2/+2
| | | | [ticket:1738]
* - Added "native_datetime=True" flag to create_engine().Mike Bayer2010-02-111-1/+68
| | | | | | | | | This will cause the DATE and TIMESTAMP types to skip all bind parameter and result row processing, under the assumption that PARSE_DECLTYPES has been enabled on the connection. Note that this is not entirely compatible with the "func.current_date()", which will be returned as a string. [ticket:1685]
* merge 0.6 series to trunk.Mike Bayer2009-08-061-0/+174