sqlcreatedb.C: Create a runcatalog table in a MySQL test database.
void sqlcreatedb()
{
// Create a runcatalog table in a MySQL test database.
// read in runcatalog table definition
FILE *fp = fopen("runcatalog.sql", "r");
const char sql[4096];
fread(sql, 1, 4096, fp);
fclose(fp);
// open connection to MySQL server on localhost
TSQLServer *db = TSQLServer::Connect("mysql://localhost/test", "nobody", "");
TSQLResult *res;
// create new table (delete old one first if exists)
res = db->Query("DROP TABLE runcatalog");
delete res;
res = db->Query(sql);
delete res;
delete db;
}
Last change: Wed Dec 17 10:56:42 2008
Last generated: 2008-12-17 10:56
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.