SQLiteDB.connect(3kaya)
NAME
SQLiteDB::connect - Open a database file.
SYNOPSIS
SQLiteDB connect( String fname )
ARGUMENTS
fname The filename of the database
DESCRIPTION
- Use this function to open the database file (creating it if it does not
exist). You can then use the functions from DB(3kaya) to query the
database.
- db = SQLiteDB::connect("site.db");
res = exec(db,"SELECT * FROM pagedata WHERE page_id = 10");
AUTHORS
Kaya standard library by Edwin Brady, Chris Morris and others
(kaya@kayalang.org). For further information see http://kayalang.org/
LICENSE
The Kaya standard library is free software; you can redistribute it
and/or modify it under the terms of the GNU Lesser General Public
License (version 2.1 or any later version) as published by the Free
Software Foundation.