diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/test1.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test1.c b/src/test1.c index a7fb07cb4..ebccaf95e 100644 --- a/src/test1.c +++ b/src/test1.c @@ -3954,6 +3954,7 @@ static int SQLITE_TCLAPI test_bind_blob( } +#ifndef SQLITE_OMIT_VIRTUALTABLE /* ** sqlite3_carray_bind [options...] STMT NAME VALUE ... ** @@ -4139,6 +4140,7 @@ carray_bind_done: } return TCL_OK; } +#endif /* SQLITE_OMIT_VIRTUALTABLE */ /* ** Usage: sqlite3_bind_parameter_count STMT @@ -8216,7 +8218,9 @@ int Sqlitetest1_Init(Tcl_Interp *interp){ { "sqlite3_bind_text", test_bind_text ,0 }, { "sqlite3_bind_text16", test_bind_text16 ,0 }, { "sqlite3_bind_blob", test_bind_blob ,0 }, +#ifndef SQLITE_OMIT_VIRTUALTABLE { "sqlite3_carray_bind", test_carray_bind ,0 }, +#endif { "sqlite3_bind_parameter_count", test_bind_parameter_count, 0}, { "sqlite3_bind_parameter_name", test_bind_parameter_name, 0}, { "sqlite3_bind_parameter_index", test_bind_parameter_index, 0}, |