You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -223,10 +223,10 @@ doRead(function(err) {
223
223
224
224
### Large inserts or updates
225
225
226
-
To insert or update a large number of records you should use _prepared statements_ rather than individual execute calls on the connection object:
226
+
To insert or update a large number of records you should use _prepared statements_ rather than individual `execute` calls on the connection object:
227
227
228
-
* `statement =connection.prepare(sql)` creates a prepared statement.
229
-
* `statement.execute(args, callback)` executes the prepared statement with the values in `args`. You can call this repeatedly on the same `statement`.
228
+
* `statement =connection.prepare(sql)`: creates a prepared statement.
229
+
* `statement.execute(args, callback)`: executes the prepared statement with the values in `args`. You can call this repeatedly on the same `statement`.
0 commit comments