如上所述,这是我的方法:
#!/usr/bin/env python
import importlib
import sys
schema = (('tags', set(('id','tag','gen','creation'))),
('nodes', set(('name', 'id', 'gen', 'creation'))),
('node_tag', set(('node_id', 'tag_id', 'creation'))),
('tgen', set(('tid', 'comment', 'creation')))
)
drivers = {
'mysql': 'MySQLdb',
'pg': 'psycopg2',
'sqlite': 'sqlite3',
}
if __name__ == '__main__':
args = sys.argv[1:]
if args[0] in drivers.keys():
dbtype = args[0]
db = importlib.import_module(drivers[dbtype])
else:
print >> sys.stderr, 'Unrecognized dbtype %s, should be one of these:' % args[0], ' '.join(drivers.keys())
sys.exit(127)
if dbtype == 'sqlite':
required_args = 2
dbopts = { 'database': args[1] }
else:
required_args = 6
dbopts = { 'database' : args[1],
'user' : args[2],
'passwd' : args[3],
'host' : args[4],
'port' : int(args[5]),
}
if len(args) < required_args:
print >> sys.stderr, 'Must supply all arguments:',
print >> sys.stderr, '[mysql|pg|sqlite] database user passwd host port'
sys.exit(126)
if dbtype == 'mysql':
dbopts['db'] = dbopts['database']
del dbopts['database']
if dbtype == 'pg':
dbopts['password'] = dbopts['passwd']
del dbopts['passwd']
try:
conn = db.connect(**dbopts)
except db.Error, e:
print 'Database connection failed: %s' % e
sys.exit(125)
cur = conn.cursor()
exit_code = 0
for each_table in schema:
table, columns = each_table
introspected_columns = None
try:
cur.execute("SELECT * FROM %s WHERE 0=1" % table)
introspected_columns = set((x[0] for x in cur.description))
except db.Error, e:
print >> sys.stderr, 'Encountered %s Error on table %s' % (e, table)
if introspected_columns:
missing = columns - introspected_columns
extra = introspected_columns - columns
if missing:
print 'Error: Missing columns in table %s: %s' % (table,' '.join(missing))
exit_code += 1
else:
print 'All columns present for table %s' % table
if extra:
print 'Warning: Extra columns in table %s: %s' % (table, ' '.join(extra))
sys.exit(exit_code)
...在实际实践中,这将被重构为一个类,并在我正在编写的守护程序的服务启动期间调用。
注意这里的实际技术是对所有列进行查询SELECT * FROM some_table
......但保证不返回任何行WHERE 0=1
......这意味着我不需要提前知道任何表名。这似乎始终如一地在 DBAPI(客户端)游标中设置 DBAPI cur.description字段。
(顺便说一下,这个例子还强调了流行的 DBAPI 数据库驱动程序中连接关键字参数的一些令人讨厌的差异。它们似乎都没有忽略额外的键,所以我们需要为这三个中的每一个设置显着不同的参数;只是 SQLite3 的文件名,并更改对于 MySQLdb,'database' 键的名称为 'db',对于 PostgreSQL,'password' 为 'passwd' ---至少对于psycopg2驱动程序而言)。