comparison tests/test_MySQLdb_capabilities.py @ 74:80164eb2f090 MySQLdb

This passes all test, yet is still broken and ugly in many ways. However, a lot of ugliness has been removed.
author adustman
date Sat, 20 Feb 2010 04:27:21 +0000
parents c0c00294239b
children
comparison
equal deleted inserted replaced
73:24fa6a40c706 74:80164eb2f090
11 db_module = MySQLdb 11 db_module = MySQLdb
12 connect_args = () 12 connect_args = ()
13 connect_kwargs = dict(db='test', read_default_file='~/.my.cnf', 13 connect_kwargs = dict(db='test', read_default_file='~/.my.cnf',
14 charset='utf8', sql_mode="ANSI,STRICT_TRANS_TABLES,TRADITIONAL") 14 charset='utf8', sql_mode="ANSI,STRICT_TRANS_TABLES,TRADITIONAL")
15 create_table_extra = "ENGINE=INNODB CHARACTER SET UTF8" 15 create_table_extra = "ENGINE=INNODB CHARACTER SET UTF8"
16 leak_test = True 16 leak_test = False
17 17
18 def quote_identifier(self, ident): 18 def quote_identifier(self, ident):
19 return "`%s`" % ident 19 return "`%s`" % ident
20 20
21 def test_TIME(self): 21 def test_TIME(self):