SQLite3
Creates (if doesn't exist) a database file called "database.db", adds a table called "items" with fields for id, name, email, and age. Field "id" is hidden, used to manage the database internally. You can add, edit, and delete items.
| name | age | add | |
|---|---|---|---|
| Ann | [email protected] | 8 | more_vert |
| Zebedee | [email protected] | 95 | more_vert |
| Alana | [email protected] | 30 | more_vert |
| Alan | [email protected] | 30 | more_vert |
| Joe Bloggs | [email protected] | 20 | more_vert |
add