ConnectorTypeSQLMSSQL
class connector_types.connector_type_sqlmssql.ConnectorTypeSQLMSSQL(execution, workspace, inputs, cancel_event)
Base class: SqlLiveOutputMixin
Parameters
| Name | Type | Description |
|---|---|---|
| cancel_event | Event | |
| execution | dict | |
| inputs | dict | |
| workspace |
Input Schema
-
schema_version = '10.0'Type:
string -
authenticationType:
anyOfOptions: -
hostThe remote hostname or IP address.
Type:
string -
portType:
anyOfOptions: -
instanceIf set, the
SQL Server Browseron port 1434 will be contacted to querythe TCP port of the named instance. The port returned by the
SQL Server Browserwilltake precedence to the one specified in the connection inputs.
Type:
string -
databaseType:
string -
dsn_additional_parametersOptional additional ODBC connection string parameters appended to the generated DSN.
Example:
{"Encrypt": "yes", "TrustServerCertificate": "no", "ApplicationIntent": "ReadOnly"}Type:
objectAdditional Properties:
{'element': 'form-string', 'type': 'string', 'default': '', 'label': 'Parameter value'} -
modeType:
anyOfOptions: -
isolation_levelThe transaction isolation level.
Type:
anyOfOptions:Default:
READ_COMMITTED -
autocommitIf set to
Falsetransactions are enabled. Certain operations (e.g. CREATE DATABASE) requireautocommit=True.Type:
boolean -
fast_executemanyIf set to
Truetheexecutemanymethod will use thefast_executemanyflag. This is faster but might use subtly different datatype conversion.Type:
boolean -
connect_timeoutA timeout for connecting to a peer in seconds.
Type:
integerDefault:
30 -
total_timeoutTotal timeout for the request in seconds.
Type:
integerDefault:
30 -
live_outputStream partial output_value updates while the connection is running.
Type:
booleanDefault:
True -
live_output_fetch_batch_sizeNumber of rows per output_value update during fetch.
Type:
integerDefault:
100 -
live_output_max_bytesStop streaming fetch results to output_value once the serialized result exceeds this size in bytes. Set to 0 for no limit. The final output_value still contains all rows.
Type:
integerDefault:
1048576