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,則會移除所有虛擬表格模組。