HomeSort by relevance Sort by last modified time
    Searched refs:MySQLdb (Results 1 - 12 of 12) sorted by null

  /external/autotest/tko/
query_history.cgi 5 import MySQLdb
18 except MySQLdb.ProgrammingError, err:
db_mysql.py 2 import MySQLdb as driver
  /external/autotest/frontend/
make_superuser.py 4 import MySQLdb
20 con = MySQLdb.connect(host=host, user=user,
  /external/autotest/site_utils/
db_replica_checker.py 19 import MySQLdb
54 master_conn = MySQLdb.connect(host=DATABASE_HOST,
58 cursor = master_conn.cursor(MySQLdb.cursors.DictCursor)
66 replica_conn = MySQLdb.connect(host=REPLICA_DATABASE_HOST,
70 cursor = replica_conn.cursor(MySQLdb.cursors.DictCursor)
kill_slow_queries.py 9 import MySQLdb
104 db = MySQLdb.connect('localhost', user, password)
label_cleaner.py 26 import MySQLdb
67 @param conn: MySQLdb Connection object.
85 @param conn: MySQLdb Connection object.
123 @param conn: MySQLdb Connection object.
184 conn = MySQLdb.connect(host=options.db_server, user=USER,
dump_to_cloudsql.py 98 A MySQLdb compatible database connection to the Cloud SQL instance.
123 A MySQLdb database connection to the local MySQL database.
127 import MySQLdb
129 sys.exit('Unable to import MySQLdb. To install on Ubuntu: '
130 'apt-get install python-mysqldb')
131 return MySQLdb.connect(host=self._host, user=self._user,
  /external/autotest/site_utils/stats/
mysql_stats.py 16 import MySQLdb
70 self.db = MySQLdb.connect(*self.args, **self.kwargs)
78 except MySQLdb.Error:
86 @param connection: MySQLdb cursor to query with.
100 MySQLdb.OperationalError,
  /external/autotest/frontend/db/backends/afe/
base.py 7 import MySQLdb as Database
10 raise ImproperlyConfigured("Error loading MySQLdb module: %s" % e)
  /external/autotest/database/
database_connection.py 61 import MySQLdb
62 super(_MySqlBackend, self).__init__(MySQLdb)
72 import MySQLdb.converters
73 convert_dict = MySQLdb.converters.conversions
migrate_unittest.py 5 import MySQLdb
  /external/libxml2/doc/
index.py 38 import MySQLdb
195 DB = MySQLdb.connect(passwd=passwd, db=db)
    [all...]

Completed in 183 milliseconds