问题 I am able to insert one record into a table, but i want to insert multiple records at once into the table- My Code is below- var doinsert_autocommit = function (conn, cb) { var query="INSERT INTO test VALUES (:id,:name)"; var values=[{1,'rate'},{5,'ratee'}]; If i use [1,'rat']- its working for inserting one row. conn.execute( "INSERT INTO test VALUES (:id,:name)", values, // Bind values { autoCommit: true}, // Override the default non-autocommit behavior function(err, result) { if (err) {