Logo ROOT   6.10/09
Reference Guide
sqlcreatedb.C File Reference

Detailed Description

Create a runcatalog table in a MySQL test database.

void sqlcreatedb()
{
// 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;
}
Author
Sergey Linev

Definition in file sqlcreatedb.C.