mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
fix(sap): pass the configured schema to the db client (#11321)
This commit is contained in:
parent
40cc6886d5
commit
04ca83a72f
@ -254,6 +254,7 @@ export class SapDriver implements Driver {
|
||||
}
|
||||
|
||||
if (this.options.database) dbParams.databaseName = this.options.database
|
||||
if (this.options.schema) dbParams.currentSchema = this.options.schema
|
||||
if (this.options.encrypt) dbParams.encrypt = this.options.encrypt
|
||||
if (this.options.sslValidateCertificate)
|
||||
dbParams.validateCertificate = this.options.sslValidateCertificate
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user