-
Book Overview & Buying
-
Table Of Contents
Learning SQLite for iOS
By :
These are the eight methods and two objects that form the SQLite interface. These are the basic list of functions that each user/reader must be aware of when using SQLite in code. These statements don't change, nor does their functionality. These are the key statements to ensure that users are aware of the name, format, and where these functions are used:
sqlite3: Database connection object, made by sqlite3_open(), killed by sqlite3_close()
sqlite3_stmt: Preparation statement object, made by sqlite3_prepare(), killed by sqlite3_finalize()
sqlite3_open(): Opens the database (new or existing) and uses constructor sqlite3
sqlite3_prepare(): Compiles some SQL text into byte code to perform updating or querying tasks and is the constructor of sqlite3_stmt
sqlite3_bind(): Application data is stored into the parameters of the original SQL
sqlite3_step(): The further advancement of sqlite3_stmt onto the next row or completion
sqlite3_column(): The current row result outlining column...
Change the font size
Change margin width
Change background colour