sqlite.open(dbname)
Open a connection to a SQLite database and return a database object.
Example
db,err = sqlite.open('mydb')
if not db then error(err,0) end
This information applies to Netezza Performance Server for Cloud Pak for Data System 1.0.X.
See also Netezza Performance Server for Cloud Pak for Data System 2.0.X, Netezza Performance Server for Cloud Pak for Data, and Netezza Performance Server for Cloud Pak for Data as a Service.
Open a connection to a SQLite database and return a database object.
db,err = sqlite.open('mydb')
if not db then error(err,0) end