使用knex进行MYSQL数据库传输

时间:2017-11-14 10:38:18

标签: mysql node.js knex.js

const exec_string = 'mysqldump --user=abc--password=abc--host=localhost test | mysql --user=xyz--password=xyz --host=localhost new_test';
knex.raw(exec_string)
.then((res) => {
    console.log("res >>",res);
})
.catch((err)=>{
    console.log("err >>",err);
})

这里我有测试数据库。我想使用knex npm在new_test数据库中传输该数据库。 如果有任何其他解决方案,请建议我。

1 个答案:

答案 0 :(得分:0)

Knex不是正确的工具。使用exec或shelljs听起来是一种很好的方法。