// 空的 SQLite 模块,用于 Web 环境 console.warn('SQLite is not available in web environment'); // 导出空的对象,避免导入错误 module.exports = { openDatabaseSync: () => { throw new Error('SQLite is not available in web environment'); } };