-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Hello!
I have to insert tons of similar rows using prepared statement. Is it possible with this lib?
Just like below:
https://github.com/SAP/node-hdb#prepared-statement-execution
client.prepare('INSERT INTO X(Y) VALUES (?)', function (err, statement){
if (err) {
return console.error('Error:', err);
}
// do something with the statement
statement.exec(['X'], function (err, rows) {
if (err) {
return console.error('Error:', err);
}
console.log('Rows:', rows);
});
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels