
from ROOT import TSQLServer


# read in runcatalog table definition
fp = open("runcatalog.sql", "r")
sql = fp.read()
fp.close()

# open connection to MySQL server on localhost
db = TSQLServer.Connect("mysql://localhost/test", "nobody", "")

# create new table (delete old one first if exists)
res = db.Query("DROP TABLE runcatalog")

res = db.Query(sql)
