summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases
Commit message (Collapse)AuthorAgeFilesLines
...
* - 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
* *whistle*Jason Kirtland2008-03-301-1/+0
|
* - Removed cache decorator.Jason Kirtland2008-03-301-2/+7
|
* some cache decorator calls...Mike Bayer2008-03-303-18/+9
|
* - schema-qualified tables now will place the schemanameMike Bayer2008-03-301-2/+0
| | | | | | | | | | ahead of the tablename in all column expressions as well as when generating column labels. This prevents cross- schema name collisions in all cases [ticket:999] - the "use_schema" argument to compiler.visit_column() is removed. It uses schema in all cases now. - added a new test to the PG dialect to test roundtrip insert/update/delete/select statements with full schema qualification
* MSSQL fixes for tickets 979, 916, 884Rick Morrison2008-03-301-5/+34
|
* - Added PendingDeprecationWarning supportJason Kirtland2008-03-291-1/+1
| | | | - Deprecation decorator is now a real decorator
* - Added generic func.random (non-standard SQL)Jason Kirtland2008-03-251-0/+6
|
* - the "owner" keyword on Table is now deprecated, and isMike Bayer2008-03-221-68/+69
| | | | | | | | | | | | | | | | | | | | exactly synonymous with the "schema" keyword. Tables can now be reflected with alternate "owner" attributes, explicitly stated on the Table object or not using "schema". - all of the "magic" searching for synonyms, DBLINKs etc. during table reflection are disabled by default unless you specify "oracle_resolve_synonyms=True" on the Table object. Resolving synonyms necessarily leads to some messy guessing which we'd rather leave off by default. When the flag is set, tables and related tables will be resolved against synonyms in all cases, meaning if a synonym exists for a particular table, reflection will use it when reflecting related tables. This is stickier behavior than before which is why it's off by default.
* reverted r4315 - a basic test works the way it was and fails with this changeMike Bayer2008-03-221-1/+1
|
* Undoing patch #994, for now; more testing needed. Sorry. Also modifying ↵Catherine Devlin2008-03-201-93/+0
| | | | test for query equivalence to account for underscoring of bind variables.