blob: 02bf2691d9409f0465830947cd9569c08124f5b8 [file] [log] [blame]
import common
import MySQLdb as driver
import db
class db_mysql(db.db_sql):
def connect(self, host, database, user, password):
return driver.connect(host=host, user=user,
passwd=password, db=database)