summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/mssql.py
Commit message (Expand)AuthorAgeFilesLines
* merge 0.6 series to trunk.Mike Bayer2009-08-061-1771/+0
* Corrected annoying deprecation warning on 2.6+ related to mssql and the __new...Michael Trier2009-07-261-2/+2
* Modified savepoint logic in mssql to ensure that it does not step on non-save...Michael Trier2009-04-281-8/+4
* Added in MSSQL reserved words list. Fixes #1310Michael Trier2009-04-121-2/+31
* Added multi part schema name support. Closes #594 and #1341.Michael Trier2009-04-111-0/+5
* extract() is now dialect-sensitive and supports SQLite and others.Jason Kirtland2009-03-301-0/+12
* Modified information_schema change to keep it backwards compatible.Michael Trier2009-03-291-12/+71
* Corrected problem with information schema not working with binary collation o...Michael Trier2009-03-271-27/+17
* Corrected issue on mssql where max_identifier_length was not being respected.Michael Trier2009-02-181-1/+2
* Preliminary support for pymssql 1.0.1 [Ticket:1318]Rick Morrison2009-02-131-1/+8
* Correction to reflection fix r5718 to handle Binary / other numeric types.Michael Trier2009-01-231-2/+2
* mssql: modified table reflection code to use only kwargs when constructing co...Rick Morrison2009-01-231-17/+13
* Trying one more time to get the decimal handling on mssql right. Closes #1282.Michael Trier2009-01-221-10/+28
* Restored convert_unicode handling on mssql. Fixes #1291.Michael Trier2009-01-221-3/+0
* Corrected handling of large decimal values on mssql. Added more robust tests.Michael Trier2009-01-171-25/+10
* NotSupportedError is a DBAPI wrapper which takes four args and is expected to...Mike Bayer2009-01-111-1/+1
* Corrected SAVEPOINT support on the adodbapi dialect by changing the handlingMichael Trier2009-01-111-3/+3
* Modified the do_begin handling in mssql to use the Cursor not the Connection.Michael Trier2009-01-111-2/+7
* Forgot to sqash a commit. Follow up on mssql dates refactoring.Michael Trier2009-01-051-8/+11
* mssql date / time refactor.Michael Trier2009-01-051-43/+91
* Corrected a few docs and didn't realize we put pyodbc first in the search list.Michael Trier2009-01-041-2/+11
* Corrected an issue on mssql where Numerics would not accept an int.Michael Trier2009-01-031-2/+4
* Added a note about mssql compatibility levels.Michael Trier2009-01-031-0/+11
* found some more _Function->FunctionMike Bayer2009-01-021-1/+1
* Marked mssql test as failing since it cannot update identity columns.Michael Trier2009-01-021-1/+0
* Mapped char_length to the LEN() function for mssql.Michael Trier2009-01-021-1/+2
* Added ability to use subselects within INSERTS on mssql.Michael Trier2009-01-021-0/+27
* Turned off the implicit transaction behavior of MSSQL.Michael Trier2009-01-021-0/+4
* Cleanup of r5556. Makes the description_encoding less public since this is aMichael Trier2009-01-021-3/+4
* Modifications to the mssql dialect in order to to pass through unicode in the...Michael Trier2008-12-301-37/+30
* Added a new description_encoding attribute on the dialect.Michael Trier2008-12-301-6/+8
* - added another usage recipe for contains_eager()Mike Bayer2008-12-291-1/+1
* Added in a new MSGenericBinary type.Michael Trier2008-12-281-4/+25
* Corrected reflection issue in mssql where include_columns doesn't include the...Michael Trier2008-12-281-2/+2
* On MSSQL if a field is part of the primary_key then it should not allow NULLS.Michael Trier2008-12-281-1/+1
* MSSQL refactoring of BINARY type and addition of MSVarBinary and MSImage.Michael Trier2008-12-281-2/+19
* - Reflected foreign keys will properly locateMike Bayer2008-12-261-2/+2
* Added MSSQL support for introspecting the default schema name for the logged ...Michael Trier2008-12-231-0/+18
* Merge branch 'collation'Michael Trier2008-12-231-28/+314
* Major refactoring of the MSSQL dialect. Thanks zzzeek.Michael Trier2008-12-221-197/+299
* removed the "create_execution_context()" method from dialects and replacedMike Bayer2008-12-191-5/+2
* *most* py3k warnings are resolved, with the exception of the various __setsli...Mike Bayer2008-12-181-1/+1
* Support for three levels of column nullability: NULL, NOT NULL, and the datab...Michael Trier2008-12-121-3/+19
* We don't need two of these.Michael Trier2008-12-111-3/+0
* Implemented experimental savepoint support in mssql. There are still some fai...Michael Trier2008-12-111-0/+10
* Pulled out values test that uses boolean evaluation in the SELECT in order to...Michael Trier2008-11-141-3/+4
* Fixed a problem with the casting of a zero length type to a varchar. It now c...Michael Trier2008-11-141-1/+1
* The str(query) output is also correct on the mssql dialect.Michael Trier2008-11-141-1/+2
* Corrected mssql schema named subqueries from not properly aliasing the column...Michael Trier2008-11-121-3/+4
* Handle the mssql port properly. If we're using the SQL Server driver then use...Michael Trier2008-11-101-3/+9