http://www.sqlite.org/cvstrac/tktview?tn=1187
Sun, Apr 24, 2005 at 03:08:12PM -0600: Jack Lewis wrote:
> Hello,
>
> How do you configure SqLite 3 with some of the SQLITE_OMIT_*
> omits.
>
> For example, this results in a compilation error.
>
> CFLAGS="-DSQLITE_OMIT_ALTERTABLE" ./configure --
I'm starting with SQLite 3, and I like here. Here is a C/C++ code
snippet someone might find useful. You can have it as public domain.
int sqlite3_table_exists(sqlite3 *db, char * table)
{
char buf[200];
char **resultp;
int nrow, ncolumn;
sprintf(buf, "SELECT na
Hello,
How do you configure SqLite 3 with some of the SQLITE_OMIT_* omits.
For example, this results in a compilation error.
CFLAGS="-DSQLITE_OMIT_ALTERTABLE" ./configure --enable-threadsafe
--disable-tcl
make clean
make # fails during make
3 matches
Mail list logo