MyDB connect(String host, String user, String pwd, String db, Int port=0)
Arguments
host: The database host to connect touser: The database user to connect aspwd: The password for that userdb: The database to connect toport: The port that the database server is running on. This defaults to zero, which is suitable when connecting to a server on 'localhost'. The usual MySQL port for remote servers is 3306.
Usage
Use this function to connect to the database. You can then use the functions from DB to query the database.
db = MyDB::connect("localhost","web","WHSpWXPPh5","mysite");
res = exec(db,"SELECT * FROM pagedata WHERE page_id = 10");