sqlite3_open()
opendb - Opens specified database file.
sqlite3_close()
closedb - Closes a previously opened database file.
sqlite3_prepare_v2()
prepare - Prepares a SQL statement ready for execution.
sqlite3_step()
step - Executes a SQL statement previously prepared by the sqlite3_prepare_v2() function.
sqlite3_finalize()
finalize - Deletes a previously prepared SQL statement from memory.
sqlite3_column_type()
columnIntValue, columnStringValue - Returns a data field from the results of a SQL retrieval operation where is replaced by the data type of the data to be extracted (text, blob, bytes, int, int16 etc).