Sqlite Basic Knowledge
Date Types
TEXT INTEGER NUMERIC REAL NONE
String Datatypes -All string datatypes in SQLite are converted to a TEXT datatype. If you try to specify a size for a string datatype, SQLite will ignore it, as it does not allow size restrictions on string datatypes.
Numeric Datatypes - All numeric datatypes in SQLite are converted to INTEGER, NUMERIC, or REAL datatypes.
Date/Time Datatypes - All date or time datatypes in SQLite are converted to NUMERIC datatypes.
Large Object (LOB) Datatypes - NONE
Command Line
Meta Commands
Command Description .show Displays current settings for various parameters .databases Provides database names and files .quit Quit sqlite3 program .tables Show current tables .schema/ .fullschema Display schema of table .header Display or hide the output table header .mode Select mode for the output table .dump Dump database in SQL text format CRUD
Create
Read(Select)
Update
Delete
Reference