summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/mysql.py
Commit message (Expand)AuthorAgeFilesLines
* stopgap, need a general strategy for raising readable exceptions for unicode ...Jason Kirtland2007-08-151-1/+2
* - merged "fasttypes" branch. this branch changes the signatureMike Bayer2007-08-141-94/+123
* adjusted mysql autoload from a named schema, esp. for windowsJason Kirtland2007-08-131-8/+7
* auto-commit after LOAD DATA INFILE for mysqlJason Kirtland2007-08-121-2/+11
* Docs.Jason Kirtland2007-08-121-0/+19
* Allow auto_increment on any pk column, not just the first.Jason Kirtland2007-08-121-7/+12
* by popular demand, mysql reflection is now a single round-trip and uses a par...Jason Kirtland2007-08-111-171/+718
* Added 'unformat_identifiers', produces a list of unquoted identifiers from an...Jason Kirtland2007-08-091-0/+3
* restore clipping value for YEAR DDLJason Kirtland2007-08-091-2/+7
* Added `set_types` to util, a tuple of available set implementations.Jason Kirtland2007-08-081-15/+139
* 'condition' misspelledMike Bayer2007-08-071-1/+1
* Pedantic tweak to coltype swappage...Jason Kirtland2007-08-041-0/+1
* Further tweaks for lc strategiesJason Kirtland2007-08-041-7/+16
* switch (simple) occurences of 'if len(x)' to 'if x': find . -name '*.py' |xar...Jonathan Ellis2007-08-031-1/+1
* - Dialects can be queried for the server version (sqlite and mysql only with ...Jason Kirtland2007-08-031-59/+150
* Stopgap for post- #646 and r3030, wedge in 0.3 Decimals-are-floats behavior f...Jason Kirtland2007-08-011-2/+1
* Promoted format_table_seq from mysql to ansisql. Formats a fully qualified t...Jason Kirtland2007-08-011-10/+0
* MetaData can now reflect() all tables in the database en-masse thanks to tabl...Jason Kirtland2007-07-311-1/+4
* Big MySQL dialect update, mostly efficiency and style.Jason Kirtland2007-07-291-117/+309
* Finish table_names.Jason Kirtland2007-07-291-2/+4
* add table_names() for mysql. maybe it works.Jonathan Ellis2007-07-291-0/+4
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to maintena...Mike Bayer2007-07-271-32/+75
* Merged lower case caching, fetching from r2955Jason Kirtland2007-07-201-20/+50
* Better quoting of identifiers when manipulating schemasJason Kirtland2007-07-191-9/+18
* Minor cleanups.Jason Kirtland2007-07-171-6/+6
* Be specfic when detecting "no table" exceptions.Jason Kirtland2007-07-171-4/+5
* - Added basic schema reflection coverage to main testsJason Kirtland2007-07-171-4/+14
* Refinement for r2890, column names should remain unicode.Jason Kirtland2007-07-131-0/+3
* - Keep reflected strings in the connection encoding, not unicode. For now.Jason Kirtland2007-07-121-10/+7
* - Patch up MySQL reflection issues with old server versions, alpha drivers,Jason Kirtland2007-07-121-59/+98
* some errors of droppedm mysql connections weren't being caught by the disconn...Ants Aasma2007-06-271-1/+1
* fix #624, modulo operator escaping on mysql and postgresAnts Aasma2007-06-261-0/+6
* - result.last_inserted_ids() should return a list that is identicallyMike Bayer2007-06-171-2/+3
* - MySQL TEXT-derived types weren't respecting convert_unicode, fixes #601Jason Kirtland2007-06-131-1/+2
* - Rearrange placement of 'fields' (mysql 4.1 reserved word) so that itJason Kirtland2007-06-051-3/+5
* - added 'fields' to reserved words [ticket:590]Mike Bayer2007-06-051-1/+1
* - Emit BOOL rather than BOOLEAN for MySQL booleans in DDL, for old versionsJason Kirtland2007-05-311-20/+28
* - Micro-documentation for why we set FOUND_ROWS flag (supports_sane_rowcount)Jason Kirtland2007-05-251-0/+2
* - Coerce 'local_infile' mysql connect argument into an intJason Kirtland2007-05-251-2/+3
* - Nearly all MySQL column types are now supported for declaration andJason Kirtland2007-05-251-49/+593
* - Expanded on the MySQL ENUM 'strict' documentation a little bit.Jason Kirtland2007-05-021-1/+4
* - MySQL ENUM types can now optionally ensure that values are within theJason Kirtland2007-05-021-5/+56
* - allow MySQL column-level CHARACTER SET and COLLATE, plus shortcuts likeJason Kirtland2007-05-011-72/+162
* - mysql uses "DESCRIBE [<schemaname>].<tablename>", catching exceptionsMike Bayer2007-04-291-5/+18
* fixed casing of SET clauseMike Bayer2007-04-261-1/+1
* - support for SSL arguments given as inline within URL query string,Mike Bayer2007-04-221-3/+13
* - Promoted mysql's dburl query string helper to util + fixedJason Kirtland2007-04-191-10/+8
* - the dialects within sqlalchemy.databases become a setuptoolsMike Bayer2007-04-171-3/+5
* - got unicode schemas to work with postgresMike Bayer2007-04-151-8/+14
* for #516, moved the "disconnect check" step out of pool and back into base.py...Mike Bayer2007-04-031-5/+2