File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9944,7 +9944,7 @@ other attributes to a pooled `getConnection()` call, such as for
9944
9944
tagging](#connpooltagging):
9945
9945
9946
9946
```javascript
9947
- const connection = await oracledb.getConnection({ poolAlias: 'hrpool', tag: 'loc=cn;p=1 });
9947
+ const connection = await oracledb.getConnection({ poolAlias: 'hrpool', tag: 'loc=cn;p=1' });
9948
9948
9949
9949
. . . // Use connection from the pool
9950
9950
@@ -9955,7 +9955,7 @@ To use the default pool in this way you must explicitly pass the alias
9955
9955
`default`:
9956
9956
9957
9957
```javascript
9958
- const connection = await oracledb.getConnection({ poolAlias: 'default', tag: 'loc=cn;p=1 });
9958
+ const connection = await oracledb.getConnection({ poolAlias: 'default', tag: 'loc=cn;p=1' });
9959
9959
9960
9960
. . . // Use connection from the pool
9961
9961
You can’t perform that action at this time.
0 commit comments