SQL Server

Schema for configuring SQL Server database connection parameters

Properties

Name Type Description Required
type string Connection type
Constant Value: "sqlserver"
yes
host string DB host
yes
port integer DB port
Minimum: 1
Maximum: 65535
yes
database string DB name
yes
user string DB user
yes
password string DB password
no
connect_args object Additional arguments to use when connecting to the DB
no
query_args object Additional query string arguments to use when connecting to the DB
no

Example

hr:
  type: sqlserver
  host: localhost
  port: 1433
  database: hr
  user: myuser
  password: mypass

connect_args: object

Additional arguments to use when connecting to the DB

Additional Properties: allowed

query_args: object

Additional query string arguments to use when connecting to the DB

Additional Properties: allowed