Mercurial > sqlpython
changeset 522:26bdff5abf78
guessing! that pymysql uses qmark
author | catherine.devlin@gmail.com |
---|---|
date | Wed, 10 Nov 2010 07:26:24 -0500 |
parents | 1dd6c8077bc7 |
children | ba3c6c6cc952 |
files | sqlpython/connections.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/sqlpython/connections.py Wed Nov 10 07:23:12 2010 -0500 +++ b/sqlpython/connections.py Wed Nov 10 07:26:24 2010 -0500 @@ -300,7 +300,7 @@ class MySQLInstance(DatabaseInstance): rdbms = 'mysql' default_port = 3306 - paramstyle = '' + paramstyle = 'qmark' def set_defaults(self): self.port = self.default_port self.hostname = 'localhost'