This chapter introduces the reader to the way the database language, Structured Query Language (SQL), can be accessed and used from a C program. It will be demonstrated how to create the database file. When this is done, the reader will be able to create database tables. Then, it will be shown how to insert data into the table, how to amend data in the table, how to delete data from the table, and how to print out data held in the table.
Review of SQL and SQLite
SQL (Structured Query Language) is used to access a database. The easiest way to ...