我可以在表格中插入一条记录,但我想一次在表格中插入多条记录 -
我的代码如下 -
var doinsert_autocommit = function (conn, cb) {
var query="INSERT INTO test VALUES (:id,:name)";
var values=[{1,'rate'},{5,'ratee'}];
如果我使用[1,'rat'] - 它的工作原理 插入一行。
conn.execute(
"INSERT INTO test VALUES (:id,:name)",
values, // Bind values
{ autoCommit: true}, // Override the default non-autocommit behavior
function(err, result)
{
if (err) {
return cb(err, conn);
} else {
console.log("Rows inserted: " + result.rowsAffected); // 1
return cb(null, conn);
}
});
};
答案 0 :(得分:1)
更新2019/04/25:
自2.2版以来,驱动程序内置了对批量SQL执行的支持。尽可能使用connection.executeMany()
。它以较低的复杂性提供所有性能优势。有关详细信息,请参阅文档的“批处理语句执行”部分:https://oracle.github.io/node-oracledb/doc/api.html#batchexecution
上一个回答:
目前,驱动程序仅支持PL / SQL的数组绑定,而不支持直接SQL。我们希望将来能够改进这一点。目前,您可以执行以下操作...
鉴于此表:
create table things (
id number not null,
name varchar2(50) not null
)
/
以下内容应该有效:
var oracledb = require('oracledb');
var config = require('./dbconfig');
var things = [];
var idx;
function getThings(count) {
var things = [];
for (idx = 0; idx < count; idx += 1) {
things[idx] = {
id: idx,
name: "Thing number " + idx
};
}
return things;
}
// Imagine the 'things' were fetched via a REST call or from a file.
// We end up with an array of things we want to insert.
things = getThings(500);
oracledb.getConnection(config, function(err, conn) {
var ids = [];
var names = [];
var start = Date.now();
if (err) {throw err;}
for (idx = 0; idx < things.length; idx += 1) {
ids.push(things[idx].id);
names.push(things[idx].name);
}
conn.execute(
` declare
type number_aat is table of number
index by pls_integer;
type varchar2_aat is table of varchar2(50)
index by pls_integer;
l_ids number_aat := :ids;
l_names varchar2_aat := :names;
begin
forall x in l_ids.first .. l_ids.last
insert into things (id, name) values (l_ids(x), l_names(x));
end;`,
{
ids: {
type: oracledb.NUMBER,
dir: oracledb.BIND_IN,
val: ids
},
names: {
type: oracledb.STRING,
dir: oracledb.BIND_IN,
val: names
}
},
{
autoCommit: true
},
function(err) {
if (err) {console.log(err); return;}
console.log('Success. Inserted ' + things.length + ' rows in ' + (Date.now() - start) + ' ms.');
}
);
});
这会将500行与一次往返插入数据库。另外,在DB中的SQL和PL / SQL引擎之间进行单个上下文切换。
如您所见,数组必须单独绑定(您无法绑定对象数组)。这就是为什么该示例演示了如何将它们分解为单独的数组以用于绑定目的。随着时间的推移,这一切都应该变得更加优雅,但现在这种方法很有用。
答案 1 :(得分:0)
我使用simple-oracledb库进行批量插入,扩展了oracledb模块。
var async = require('async');
var oracledb = require('oracledb');
var dbConfig = require('./dbconfig.js');
var SimpleOracleDB = require('simple-oracledb');
SimpleOracleDB.extend(oracledb);
var doconnect = function(cb) {
oracledb.getConnection(
{
user : dbConfig.user,
password : dbConfig.password,
connectString : dbConfig.connectString
},
cb);
};
var dorelease = function(conn) {
conn.close(function (err) {
if (err)
console.error(err.message);
});
};
var doinsert_autocommit = function (conn, cb) {
conn.batchInsert(
"INSERT INTO test VALUES (:id,:name)",
[{id:1,name:'nayan'},{id:2,name:'chaan'},{id:3,name:'man'}], // Bind values
{ autoCommit: true}, // Override the default non-autocommit behavior
function(err, result)
{
if (err) {
return cb(err, conn);
} else {
console.log("Rows inserted: " + result.rowsAffected); // 1
return cb(null, conn);
}
});
};
async.waterfall(
[
doconnect,
doinsert_autocommit,
],
function (err, conn) {
if (err) { console.error("In waterfall error cb: ==>", err, "<=="); }
if (conn)
dorelease(conn);
});
答案 2 :(得分:0)
签出node-oracledb 2.2中引入的executeMany()
方法。这会执行一个包含许多数据值的语句,通常比多次调用execute()
具有显着的性能优势。