1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Add the SQLITE_OMIT_GET_TABLE compile-time flag. (CVS 2740)

FossilOrigin-Name: 6d4bc8f83b228b3804fffcb17ac57e1f754fa9cd
This commit is contained in:
drh
2005-10-05 02:13:40 +00:00
parent af6edf5534
commit ff55c3585c
3 changed files with 11 additions and 7 deletions

View File

@@ -20,6 +20,8 @@
#include <string.h>
#include "sqliteInt.h"
#ifndef SQLITE_OMIT_GET_TABLE
/*
** This structure is used to pass data from sqlite3_get_table() through
** to the callback function is uses to build the result.
@@ -193,3 +195,5 @@ void sqlite3_free_table(
free(azResult);
}
}
#endif SQLITE_OMIT_GET_TABLE