10.1 SQLite Primer
10.1 SQLite Primer
10.1 SQLite Primer
Storing Data
Lesson 10
● SQLite Database
● Queries
WORD_LIST_TABLE
_id word definition
1 "alpha" "first letter"
2 "beta" "second letter"
3 "alpha" "particle"
● Insert rows
● Delete rows
● Update values in rows
● Retrieve rows that meet given criteria
● SELECT columns
○ Select the columns to return
○ Use * to return all columns
● SQLite website
● Full description of the Query Language
● SQLite class
● Cursor class
● Practice: HeadFirst Labs