Optional user in GetPooledConnectionOptions (#45275)

User is optional when you get connection by tag
This commit is contained in:
William Bonawentura 2020-07-07 19:57:39 +02:00 committed by GitHub
parent 2485c414a1
commit 8d8dde6e9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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. */