Documentation
Building from source
|
|
Documentation
[NOTE: this links lead to the official SQLite home page]
The following documentation is currently available:
The SQLite source code is 30% comment. These comments are another important source
of information.
Building From Source
To statically link with your application (as a library):
- start a new empty library project
- add all .c files in the sqlite directory to the library, except shell.c
- include "sqlite.h" in your program
- build and link with your program
To dinamically link with your application (as a DLL):
- start a new empty DLL project
- add all .c files in the sqlite directory to the project, except shell.c
- add "sqlite.def" to the project
- build the DLL
- include "sqlite.h" in your program
- link with the import library built
|