tags:

views:

84

answers:

4

Is there any good tutorials/books on how to use sqlite with C??

+2  A: 

Yes, right at their website: http://www.sqlite.org/cintro.html

Amardeep
I need examples.
Nyan
A: 

Here is half a dozen of SQLite Helpers for C programmers:

http://g-wan.de/source/sqlite.c.txt

Probably the easiest way to start from scratch...

Bert
A: 

The following two examples are from my website:

These illustrate "bare bones" uses of SQLite in C.

Ben Bullock