On 17 May 2011, at 6:16pm, irfan khan wrote:

> But we are developing new application for ipad for some buisseness need and
> need to configure sqllite database for the same.

Ah, you are an iOS programmer !  SQLite is not a library, and you do not 
download a compiled library.  it consists of source code for you to include in 
your project.

You can find the source code for SQLite here:

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

You probably want either the first item.  Just include the .c and .h files in 
your project and make sure your compiler knows they are C files, and not C++ 
files.

You will probably not need to do any configuration.  However, if you do want to 
change some default settings you will make the changes in your source code, and 
you can find all the documentation for the settings in the .h file.

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

Reply via email to