DBHandle<PGConnection> connect(String info)
Arguments
info: The database host to connect to. The syntax for this argument is described in the Postgres documentation.
Usage
Use this function to connect to the database. You can then use the functions from DB to query the database.
conninfo = "dbname='mysite' user='web' password='WHSpWXPPh5'";
db = PostgresDB::connect(conninfo);
res = exec(db,"SELECT * FROM pagedata WHERE page_id = 10");