Skip to content

Commit 8c966c4

Browse files
committed
small edits to README
1 parent 692de6e commit 8c966c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,10 @@ doRead(function(err) {
223223
224224
### Large inserts or updates
225225
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:
227227
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`.
230230
231231
Example:
232232

0 commit comments

Comments
 (0)