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,则所有虚拟表模块都将被移除。