On 30 Nov 2009, at 2:09pm, FrankLane wrote:

> Hi - I downloaded sqlite-amalgamation-3_6_20.zip and now I have a folder with
> three files: sqlite3.c, sqlite3.h, and sqlite3ext.h. I have no idea what to
> do next. I have a Mac 2.4 GHz Intel Core 2 Duo running Mac OS X 10.6.1. Can
> anyone guide me to a page that steps me through an installation process?

You have already a version of SQLite installed on your Mac.  Not the latest 
version, but one which works well enough to get started.  I would recommend you 
start off by typing 'sqlite3' at a command prompt and work through some of the 
ideas in

http://www.sqlite.org/sqlite.html

Just to let you explore how it all works.  Your next steps depend on which 
programming language you want to use.  You will find the .h file for the 
version included with OS X in

/usr/include/sqlite3.h

Or if you want the extra facilities included with your latest downloaded 
version use the .h file provided by that one, and compile the .c file with your 
application.  Here are two sample programs which show you how to use the .h 
file:

http://www.sqlite.org/quickstart.html

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to