The SQL SERVER connector is one of Conduit plugins. It provides both, a source and a destination SQL SERVER connector.
- Go 1.18
- (optional) golangci-lint 1.48.0
- (optional) mock 1.6.0
Run make build
.
Run make test
to run all the unit and integration tests.
The SQL Server Destination takes a sdk.Record
and parses it into a valid SQL query.
Name | Description | Required | Example |
---|---|---|---|
connection |
String line for connection to SQL SERVER. More information about it Connection | true | sqlserver://sa:[email protected]?database=mydb |
table |
The name of a table in the database that the connector should write to, by default. | true | users |
If a record contains a sqlserver.table
property in its metadata it will be inserted in that table, otherwise it will fall back
to use the table configured in the connector. Thus, a Destination can support multiple tables in a single connector,
as long as the user has proper access to those tables.