| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Removed deprecated get_version_info, use server_version_info | Jason Kirtland | 2008-07-16 | 1 | -13/+0 | |
| | | ||||||
| * | - Removed 2.3 Decimal compat | Jason Kirtland | 2008-07-15 | 4 | -7/+7 | |
| | | ||||||
| * | - Removed 2.3 set emulations/enhancements. | Jason Kirtland | 2008-07-15 | 6 | -19/+19 | |
| | | | | | (sets.Set-based collections & DB-API returns still work.) | |||||
| * | Fix reflection where the table name has a duplicate name in a different schema | Paul Johnston | 2008-07-15 | 1 | -1/+2 | |
| | | ||||||
| * | Fixed messed up __init__ in MSSmallDate. Fixes #1040. | Michael Trier | 2008-07-13 | 1 | -1/+1 | |
| | | ||||||
| * | Added new basic match() operator that performs a full-text search. Supported ↵ | Michael Trier | 2008-07-13 | 4 | -3/+10 | |
| | | | | | on PostgreSQL, SQLite, MySQL, MS-SQL, and Oracle backends. | |||||
| * | - SQLite Date, DateTime, and Time types only accept Python | Mike Bayer | 2008-07-09 | 1 | -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 fix | Mike Bayer | 2008-07-06 | 10 | -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 #1092 | Michael Trier | 2008-07-03 | 1 | -0/+5 | |
| | | | | | (cherry picked from commit 2394a6bb6c5f77afd448640ce03cf6fda0335a23) | |||||
| * | merge r4889, SQLite Float type, from 0.4 branch | Mike Bayer | 2008-07-02 | 1 | -1/+14 | |
| | | ||||||
| * | - Modified SQLite's representation of "microseconds" to | Mike Bayer | 2008-06-27 | 1 | -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 Bayer | 2008-06-22 | 5 | -5/+6 | |
| | | ||||||
| * | merged r4857, postgres server_side_cursors fix, from 0.4 branch | Mike Bayer | 2008-06-17 | 1 | -1/+4 | |
| | | ||||||
| * | restored a "distinct" setting that got whacked | Mike Bayer | 2008-06-09 | 1 | -1/+1 | |
| | | ||||||
| * | merged merge fix from r4834/rel_0_4 branch | Mike Bayer | 2008-06-03 | 1 | -1/+1 | |
| | | ||||||
| * | merged [ticket:1062] fix from 0.4 branch r4827 | Mike Bayer | 2008-05-30 | 1 | -1/+8 | |
| | | ||||||
| * | - added "CALL" to Mysql select keywords | Mike Bayer | 2008-05-27 | 1 | -1/+1 | |
| | | | | | - NameError doesn't have "message" in py2.4 | |||||
| * | oracle dialect takes schema name into account when checking for existing tables | Mike Bayer | 2008-05-24 | 1 | -1/+3 | |
| | | | | | of the same name. [ticket:709] | |||||
| * | merged r4809 from rel_0_4, oracle fix | Mike Bayer | 2008-05-24 | 1 | -2/+2 | |
| | | ||||||
| * | Removed deprecated Dialect.prexecute_sequences aliasing | Jason Kirtland | 2008-05-21 | 1 | -1/+1 | |
| | | ||||||
| * | handle null tablespace_name | Jonathan Ellis | 2008-05-20 | 1 | -2/+2 | |
| | | ||||||
| * | add CHAR to ischema_names map; some minor cleanup | Jonathan Ellis | 2008-05-20 | 1 | -4/+3 | |
| | | ||||||
| * | Formatting. | Jason Kirtland | 2008-05-19 | 1 | -4/+11 | |
| | | ||||||
| * | - Implemented generic CHAR_LENGTH for sqlite (-> LENGTH()) | Jason Kirtland | 2008-05-19 | 1 | -1/+2 | |
| | | | | | - Updated .requires for firebird | |||||
| * | Fix typo | Lele Gaifax | 2008-05-15 | 1 | -1/+1 | |
| | | ||||||
| * | Columns now have default= and server_default=. PassiveDefault fades away. | Jason Kirtland | 2008-05-14 | 11 | -50/+48 | |
| | | ||||||
| * | Support Firebird 2.0+ RETURNING | Lele Gaifax | 2008-05-14 | 1 | -2/+85 | |
| | | ||||||
| * | Check for the presence of the Firebird generator, when creating/dropping a ↵ | Lele Gaifax | 2008-05-12 | 1 | -4/+6 | |
| | | | | | sequence | |||||
| * | Add another exception case to Firebird' is_disconnect() | Lele Gaifax | 2008-05-12 | 1 | -1/+3 | |
| | | ||||||
| * | Typo | Lele Gaifax | 2008-05-12 | 1 | -1/+1 | |
| | | ||||||
| * | Use a BLOB when asked for a [VAR]CHAR without a length under Firebird | Lele Gaifax | 2008-05-12 | 1 | -2/+8 | |
| | | ||||||
| * | MSText no longer implicitly creates TEXT for string with no length | Mike Bayer | 2008-05-09 | 1 | -1/+1 | |
| | | | | | (this actually allows CAST (foo, VARCHAR) to render too) | |||||
| * | r4695 merged to trunk; trunk now becomes 0.5. | Mike Bayer | 2008-05-09 | 12 | -152/+160 | |
| | | | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4 | |||||
| * | one-off workaround for mssql + odbc options, user patch | Rick Morrison | 2008-05-02 | 1 | -1/+4 | |
| | | ||||||
| * | Added 'odbc_options' keyword to the MSSQL dialect. Allows a partial ODBC ↵ | Rick Morrison | 2008-04-17 | 1 | -2/+6 | |
| | | | | | connection string to be passed through to the connection string generator. | |||||
| * | Firebird 2 has a SUBSTRING() builtin, expose it thru a function | Lele Gaifax | 2008-04-11 | 1 | -0/+12 | |
| | | ||||||
| * | Add a new 'odbc_autotranslate' engine/dburi kwd parm to the MSSQL pyodbc ↵ | Rick Morrison | 2008-04-08 | 1 | -1/+8 | |
| | | | | | | | dialect; string kwd contents will be passed through to ODBC connection string. [ticket:1005] | |||||
| * | remove monetdb typo | Matt Harrison | 2008-04-07 | 1 | -1/+1 | |
| | | ||||||
| * | refactor of default_paramstyle, use paramstyle argument on Dialect to change | Matt Harrison | 2008-04-07 | 6 | -7/+9 | |
| | | ||||||
| * | Added a new 'max_identifier_length' keyword to the mssql_pyodbc dialect | Rick Morrison | 2008-04-02 | 1 | -1/+4 | |
| | | ||||||
| * | - Got PG server side cursors back into shape, added fixed | Mike Bayer | 2008-04-02 | 1 | -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 Bayer | 2008-04-02 | 1 | -3/+4 | |
| | | ||||||
| * | some fixes to the MS-SQL aliasing so that result_map is properly populated | Mike Bayer | 2008-04-02 | 1 | -3/+9 | |
| | | ||||||
| * | - Assorted flakes. | Jason Kirtland | 2008-04-02 | 1 | -1/+1 | |
| | | ||||||
| * | - Revamped the Connection memoize decorator a bit, moved to engine | Jason Kirtland | 2008-04-02 | 3 | -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 Kirtland | 2008-04-02 | 1 | -1/+1 | |
| | | ||||||
| * | - added verbose activity to profiling.function_call_count | Mike Bayer | 2008-04-01 | 1 | -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 building | Rick Morrison | 2008-03-31 | 1 | -38/+5 | |
| | | ||||||
| * | Add a new 'driver' keyword to the MSSQL pyodbc Dialect. | Rick Morrison | 2008-03-31 | 1 | -24/+14 | |
| | | | | | Refresh items that were recently reverted by another checkin | |||||
| * | - reverted previous "strings instead of tuples" change due to more specific ↵ | Mike Bayer | 2008-03-30 | 3 | -11/+10 | |
| | | | | | | | test results showing tuples faster - changed cache decorator call on default_schema_name call to a connection.info specific one | |||||
