Reinforce that execute() only executes a single statement

This commit is contained in:
Christopher Jones 2017-03-16 16:03:02 +11:00
parent 3f7db86537
commit ab1ed57db5
1 changed files with 2 additions and 2 deletions

View File

@ -1649,7 +1649,7 @@ promise = execute(String sql, [Object bindParams, [Object options]]);
##### Description
This call executes a SQL or PL/SQL statement.
This call executes a single SQL or PL/SQL statement.
See [SQL Execution](#sqlexecution) for examples. Also
see [`queryStream()`](#querystream) for an alternative way of executing
queries.
@ -3284,7 +3284,7 @@ Encryption of data-at-rest in the database.
## <a name="sqlexecution"></a> 9. SQL Execution
A SQL or PL/SQL statement may be executed using the *Connection*
A single SQL or PL/SQL statement may be executed using the *Connection*
[`execute()`](#execute) method. Either the callback style shown
below, or [promises](#promiseoverview) may be used.