我正在编写一个小实用程序来将数据从一个 sqlite 数据库文件复制到另一个。这两个文件具有相同的表结构——这完全是关于将行从一个数据库移动到另一个数据库。
我现在的代码:
let tables: Array<string> = [
"OneTable", "AnotherTable", "DataStoredHere", "Video"
]
tables.forEach((table) => {
console.log(`Copying ${table} table`);
sourceDB.each(`select * from ${table}`, (error, row) => {
console.log(row);
destDB.run(`insert into ${table} values (?)`, ...row) // this is the problem
})
})
row
这是一个 js 对象,其中包含每个表中的所有键控数据。我确信有一种简单的方法可以做到这一点,它不涉及转义字符串化数据。