summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/mysql.py
Commit message (Expand)AuthorAgeFilesLines
* overhaul to schema, addition of ForeignKeyConstraint/Mike Bayer2006-07-141-19/+12
* fixed up boolean datatype for sqlite, mysql, ms-sqlMike Bayer2006-07-131-2/+15
* new MySQL types: MSEnum, MSTinyText, MSMediumText, MSLongText, etc.Mike Bayer2006-06-271-20/+135
* fixed bug when specifying explicit module to mysql dialectMike Bayer2006-06-231-0/+2
* added *extra to mysql string type to consume extra unsupported arguments from...Mike Bayer2006-06-221-0/+2
* cast converted into its own ClauseElement so that it can have an explicit com...rel_0_2_3Mike Bayer2006-06-171-1/+9
* added "NonExistentTable" exception throw to reflection, courtesy lbruno@repub...Mike Bayer2006-06-061-4/+9
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-47/+40
* *another* big types change....the old way was still wrong...this way is bette...Mike Bayer2006-04-291-1/+5
* moves the binding of a TypeEngine object from "schema/statement creation" tim...Mike Bayer2006-04-061-1/+1
* refactor to Compiled.get_params() to return new ClauseParameters object, a mo...Mike Bayer2006-03-131-1/+1
* committed patch for MSDouble/tinyint from [ticket:106]Mike Bayer2006-03-101-1/+19
* took excess visit_func out, handled by ansisql compilerMike Bayer2006-03-071-6/+0
* removed the dependency of ANSICompiler on SQLEngine. you can now make ANSICo...Mike Bayer2006-03-041-1/+1
* changed ENGINE to TYPE, for mysql 4 compatibilityMike Bayer2006-03-021-1/+1
* Modified mysql to not add AUTOINCREMENT to the first integer primary key if i...Robert Leftwich2006-03-011-1/+1
* merged sql_rearrangement branch , refactors sql package to work standalone withMike Bayer2006-02-251-17/+5
* added indexes to schema/ansisql/engineMike Bayer2006-02-181-1/+15
* streamlined engine.schemagenerator and engine.schemadropper methodologyMike Bayer2006-02-111-2/+12
* foreign key reflection !!!!!Mike Bayer2006-02-061-1/+41
* table supports per-engine-type options, ansisql allows enginesMike Bayer2006-02-051-4/+12
* writes foreign keys as individual FOREIGN KEY objects, syntax seems to work b...Mike Bayer2006-02-051-1/+1
* Rick Morrison's patch adding Smallint, Date, and Time support !Mike Bayer2006-02-041-0/+15
* mysql table introspection uses 'describe' to work with 3/4/5Mike Bayer2006-01-131-1/+23
* copyright->2005,2006Mike Bayer2006-01-031-1/+1
* type objects pass engine around to get a hold of DBAPI type objectsMike Bayer2006-01-031-1/+8
* changed mysql TIMESTAMP->DATETIMEMike Bayer2006-01-021-1/+1
* factoring out mysql's rowid stuff since its down in the base engine class nowMike Bayer2006-01-011-19/+1
* license switchMike Bayer2005-12-311-13/+2
* refactoring of execution path, defaults, and treatment of different paramstylesMike Bayer2005-12-171-2/+1
* factored "sequence" execution in postgres in oracle to be generalized to the ...Mike Bayer2005-12-161-5/+8
* added rudimentary support for limit and offset (with the hack version in oracle)Mike Bayer2005-12-071-1/+10
* primary_keys => primary_keyMike Bayer2005-12-041-2/+2
* Added float type to support real/double precision/float8/etc sql data types. ...Robert Leftwich2005-12-011-0/+5
* migrated __ALL__ to __all__, oops, and reworked moduleMike Bayer2005-11-301-1/+1
* rowcount doesnt work on MySQL, so disabled concurrency check with mysqlMike Bayer2005-11-271-14/+17
* mysql somewhat presentMike Bayer2005-11-271-0/+186