summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed deprecated get_version_info, use server_version_infoJason Kirtland2008-07-161-13/+0
|
* - Removed 2.3 Decimal compatJason Kirtland2008-07-154-7/+7
|
* - Removed 2.3 set emulations/enhancements.Jason Kirtland2008-07-156-19/+19
| | | | (sets.Set-based collections & DB-API returns still work.)
* Fix reflection where the table name has a duplicate name in a different schemaPaul Johnston2008-07-151-1/+2
|
* Fixed messed up __init__ in MSSmallDate. Fixes #1040.Michael Trier2008-07-131-1/+1
|
* Added new basic match() operator that performs a full-text search. Supported ↵Michael Trier2008-07-134-3/+10
| | | | on PostgreSQL, SQLite, MySQL, MS-SQL, and Oracle backends.
* - SQLite Date, DateTime, and Time types only accept PythonMike Bayer2008-07-091-4/+3
| | | | | | | | datetime objects now, not strings. If you'd like to format dates as strings yourself with SQLite, use a String type. If you'd like them to return datetime objects anyway despite their accepting strings as input, make a TypeDecorator around String - SQLA doesn't encourage this pattern.
* - re-fixed the fix to the prefixes fixMike Bayer2008-07-0610-96/+11
| | | | | - removed ancient descriptor() functions from dialects; replaced with Dialect.name - removed similarly ancient sys.modules silliness in Engine.name
* Added PGCidr type to postgres. Closes #1092Michael Trier2008-07-031-0/+5
| | | | (cherry picked from commit 2394a6bb6c5f77afd448640ce03cf6fda0335a23)
* merge r4889, SQLite Float type, from 0.4 branchMike Bayer2008-07-021-1/+14
|
* - Modified SQLite's representation of "microseconds" toMike Bayer2008-06-271-3/+10
| | | | | | | | | | | match the output of str(somedatetime), i.e. in that the microseconds are represented as fractional seconds in string format. [ticket:1090] - implemented a __legacy_microseconds__ flag on DateTimeMixin which can be used per-class or per-type instances to get the old behavior, for compatibility with existing SQLite databases encoded by a previous version of SQLAlchemy. - will implement the reverse legacy behavior in 0.4.
* merged r4870 from 0.4 branch, index name truncation, [ticket:820]Mike Bayer2008-06-225-5/+6
|
* merged r4857, postgres server_side_cursors fix, from 0.4 branchMike Bayer2008-06-171-1/+4
|
* restored a "distinct" setting that got whackedMike Bayer2008-06-091-1/+1
|
* merged merge fix from r4834/rel_0_4 branchMike Bayer2008-06-031-1/+1
|
* merged [ticket:1062] fix from 0.4 branch r4827Mike Bayer2008-05-301-1/+8
|
* - added "CALL" to Mysql select keywordsMike Bayer2008-05-271-1/+1
| | | | - NameError doesn't have "message" in py2.4
* oracle dialect takes schema name into account when checking for existing tablesMike Bayer2008-05-241-1/+3
| | | | of the same name. [ticket:709]
* merged r4809 from rel_0_4, oracle fixMike Bayer2008-05-241-2/+2
|
* Removed deprecated Dialect.prexecute_sequences aliasingJason Kirtland2008-05-211-1/+1
|
* handle null tablespace_nameJonathan Ellis2008-05-201-2/+2
|
* add CHAR to ischema_names map; some minor cleanupJonathan Ellis2008-05-201-4/+3
|
* Formatting.Jason Kirtland2008-05-191-4/+11
|
* - Implemented generic CHAR_LENGTH for sqlite (-> LENGTH())Jason Kirtland2008-05-191-1/+2
| | | | - Updated .requires for firebird
* Fix typoLele Gaifax2008-05-151-1/+1
|
* Columns now have default= and server_default=. PassiveDefault fades away.Jason Kirtland2008-05-1411-50/+48
|
* Support Firebird 2.0+ RETURNINGLele Gaifax2008-05-141-2/+85
|
* Check for the presence of the Firebird generator, when creating/dropping a ↵Lele Gaifax2008-05-121-4/+6
| | | | sequence
* Add another exception case to Firebird' is_disconnect()Lele Gaifax2008-05-121-1/+3
|
* TypoLele Gaifax2008-05-121-1/+1
|
* Use a BLOB when asked for a [VAR]CHAR without a length under FirebirdLele Gaifax2008-05-121-2/+8
|
* MSText no longer implicitly creates TEXT for string with no lengthMike Bayer2008-05-091-1/+1
| | | | (this actually allows CAST (foo, VARCHAR) to render too)
* r4695 merged to trunk; trunk now becomes 0.5.Mike Bayer2008-05-0912-152/+160
| | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4
* one-off workaround for mssql + odbc options, user patchRick Morrison2008-05-021-1/+4
|
* Added 'odbc_options' keyword to the MSSQL dialect. Allows a partial ODBC ↵Rick Morrison2008-04-171-2/+6
| | | | connection string to be passed through to the connection string generator.
* Firebird 2 has a SUBSTRING() builtin, expose it thru a functionLele Gaifax2008-04-111-0/+12
|
* Add a new 'odbc_autotranslate' engine/dburi kwd parm to the MSSQL pyodbc ↵Rick Morrison2008-04-081-1/+8
| | | | | | dialect; string kwd contents will be passed through to ODBC connection string. [ticket:1005]
* remove monetdb typoMatt Harrison2008-04-071-1/+1
|
* refactor of default_paramstyle, use paramstyle argument on Dialect to changeMatt Harrison2008-04-076-7/+9
|
* Added a new 'max_identifier_length' keyword to the mssql_pyodbc dialectRick Morrison2008-04-021-1/+4
|
* - Got PG server side cursors back into shape, added fixedMike Bayer2008-04-021-9/+14
| | | | | | | unit tests as part of the default test suite. Added better uniqueness to the cursor ID [ticket:1001] - update().values() and insert().values() take keyword arguments.
* fixed OracleRaw type adaptation [ticket:902]Mike Bayer2008-04-021-3/+4
|
* some fixes to the MS-SQL aliasing so that result_map is properly populatedMike Bayer2008-04-021-3/+9
|
* - Assorted flakes.Jason Kirtland2008-04-021-1/+1
|
* - Revamped the Connection memoize decorator a bit, moved to engineJason Kirtland2008-04-023-54/+58
| | | | | - MySQL character set caching is more aggressive but will invalidate the cache if a SET is issued. - MySQL connection memos are namespaced: info[('mysql', 'server_variable')]
* - More 2.4 generator squashing.Jason Kirtland2008-04-021-1/+1
|
* - added verbose activity to profiling.function_call_countMike Bayer2008-04-011-50/+60
| | | | | - simplified oracle non-ansi join generation, removed hooks from base compiler - removed join() call from _label generation, fixed repeat label gen
* MSSQL adjustments to pyodbc connection string buildingRick Morrison2008-03-311-38/+5
|
* Add a new 'driver' keyword to the MSSQL pyodbc Dialect.Rick Morrison2008-03-311-24/+14
| | | | Refresh items that were recently reverted by another checkin
* - reverted previous "strings instead of tuples" change due to more specific ↵Mike Bayer2008-03-303-11/+10
| | | | | | test results showing tuples faster - changed cache decorator call on default_schema_name call to a connection.info specific one