Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 1.14 KB

1-builddb.md

File metadata and controls

19 lines (10 loc) · 1.14 KB

<<< Back - Next >>>

Building a database

To get started, we're going to use the SQLiteStudio GUI to create the database file we will be using during this session. (We will also use the same file in a later session on web frameworks.)

  1. Create a database file using the SQLite GUI by clicking Databases > Add a Database from the file menu:

    Create a database using SQLite GUI

  2. Give your database a name and make sure to save it to a directory that is outside of the SQLiteStudio download folder.

    Name your database file and save it outside of the SQLiteStudio download folder

  3. Connect to the database you just created. First click the database in the left pane to highlight it, then select Databases > Connect to the Database from the file menu:

    Connect to the database you just created

<<< Back - Next >>>