SQLiteDB connect(String fname)
Arguments
fname: The filename of the database
Usage
Use this function to open the database file (creating it if it does not exist). You can then use the functions from DB to query the database.
db = SQLiteDB::connect("site.db");
res = exec(db,"SELECT * FROM pagedata WHERE page_id = 10");