小巧、快速、可靠。
選擇其中三項。

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

另請參閱物件常數函式列表。