SQLite C 接口

删除不必要的虚拟表实现

int sqlite3_drop_modules(
  sqlite3 *db,                /* Remove modules from this connection */
  const char **azKeep         /* Except, do not remove the ones named here */
);

sqlite3_drop_modules(D,L) 接口从数据库连接 D 中删除所有虚拟表模块,列表 L 中命名的除外。L 参数必须为 NULL 或指向字符串指针数组的指针,其中数组由单个 NULL 终止指针。如果 L 参数为 NULL,则删除所有虚拟表模块。

另见:sqlite3_create_module()

另请参阅 对象常量函数的列表。