mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Optional user in GetPooledConnectionOptions (#45275)
User is optional when you get connection by tag
This commit is contained in:
parent
2485c414a1
commit
8d8dde6e9b
2
types/oracledb/index.d.ts
vendored
2
types/oracledb/index.d.ts
vendored
@ -1788,7 +1788,7 @@ declare namespace OracleDB {
|
||||
*/
|
||||
interface GetPooledConnectionOptions {
|
||||
/** Database user to retrieve the connection for. */
|
||||
user: string;
|
||||
user?: string;
|
||||
/** Password of the specified user. */
|
||||
password?: string;
|
||||
/** Optionally set the connection tag. */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user