MSSQL

Flowgen connects to Microsoft SQL Server for query execution.

  • Query — runs SQL queries and returns results as Arrow RecordBatch.

Credentials

The credentials_path field points to a JSON file with SQL Server connection details:

{
  "host": "sqlserver.example.com",
  "port": 1433,
  "database": "mydb",
  "username": "user",
  "password": "pass",
  "trust_server_certificate": false,
  "encrypt": true
}
FieldTypeDefaultDescription
hoststringrequiredSQL Server hostname.
portnumber1433SQL Server port.
databasestringrequiredDatabase name.
usernamestringrequiredSQL auth username.
passwordstringrequiredSQL auth password.
trust_server_certificatebooleanfalseSet true for self-signed certificates.
encryptbooleantrueTLS encryption. Set false only for legacy servers.