File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -4100,8 +4100,10 @@ statement is executed irrespective of the value of `autoCommit`.
4100
4100
4101
4101
Node-oracledb's [` execute ()` ](#execute) method uses the
4102
4102
[Oracle OCI statement cache](https://docs.oracle.com/database/121/LNOCI/oci09adv.htm#i471377)
4103
- instead of requiring applications to prepare, execute (and then
4104
- re-execute without re-preparing) statements in separate steps.
4103
+ to make re-execution of statements efficient. This cache removes the
4104
+ need for a separate 'prepare' method which is sometimes seen in other
4105
+ Oracle APIs: there is no separate 'prepare' method in node-oracledb.
4106
+
4105
4107
Each non-pooled connection and each session in the connection pool has
4106
4108
its own cache of statements with a default size of 30. Statement
4107
4109
caching lets cursors be used without re-parsing the statement.
You can’t perform that action at this time.
0 commit comments