blob: 02bf2691d9409f0465830947cd9569c08124f5b8 [file] [log] [blame]
mbligh8bcd23a2009-02-03 19:14:06 +00001import common
mbligh96cf0512008-04-17 15:25:38 +00002import MySQLdb as driver
mblighb7c77d52007-12-03 19:04:39 +00003import db
4
5class db_mysql(db.db_sql):
jadmanski0afbb632008-06-06 21:10:57 +00006 def connect(self, host, database, user, password):
7 return driver.connect(host=host, user=user,
8 passwd=password, db=database)