What is SQLite?
Public-domain, lightweight RDBMS, follows nearly entire SQL-92. Designed by D. Richard Hipp, 2000.
Main features:
Many applications use SQLite3: WhatsApp, Skype, Mozilla Firefox, Chrome.
Name the commands for:
What are the five data types in SQLite?
How can you auto increment a field in SQL?
CREATE TABLE person (
PID INTEGER PRIMARY KEY AUTOINCREMENT
Name TEXT
);
What is the SQLite_Master table?
Contain information on all tables, indexes and keys.
Get information from sqlite_master table:
SELECT * FROM sqlite_master;
Show the structure of the sqlite_master table:
.schema sqlite_master;
What are the five steps to analysis unknown databases?