小巧、快速、可靠。
任选其三。

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()

另见 对象常量函数 列表。