SQLite In 5 Minutes Or Less

SQLite In 5 Minutes Or Less

Here is what you do to start experimenting with SQLite without having to do a lot of tedious reading and configuration:

Download The Code

  • Get a copy of the prebuilt binaries for your machine, or get a copy of the sources and compile them yourself. Visit the download page for more information.

Create A New Database

  • At a shell or DOS prompt, enter: "sqlite3 test.db". This will create a new database named "test.db". (You can use a different name if you like.)

  • Enter SQL commands at the prompt to create and populate the new database.

  • Additional documentation is available here-

Write Programs That Use SQLite