Sqlite implementation of the Adapter
Class methods
converts the crystal class to database type of this adapter
SourceInstance methods
remove all rows from a table and reset the counter on the id.
SourceThis will delete a row from the database.
Sourceimport(table_name :
String, primary_name :
String, auto :
Bool, fields, model_array, **options)
This will insert an array of models as one insert statement
Sourceinsert(table_name :
String, fields, params, lastval) :
Int64 This will insert a row in the database and return the id generated.
Sourcequotes table and column names
Sourceupdate(table_name :
String, primary_name :
String, fields, params)
This will update a row in the database.
Source