Skip to content

Commit

Permalink
SQL Server Source: with 11.2.0.jre11 there are troubles connecting to…
Browse files Browse the repository at this point in the history
… SQL Server

Signed-off-by: Andrea Cosentino <ancosen@gmail.com>
  • Loading branch information
oscerd committed Oct 26, 2022
1 parent 2e99766 commit 068cf42
Showing 1 changed file with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,20 @@ spec:
description: A query to run on a tuple consumed
type: string
example: 'DELETE FROM accounts where user_id = :#user_id'
encrypt:
title: Encrypt Connection
description: Encrypt the connection to SQL Server.
type: boolean
x-descriptors:
- 'urn:alm:descriptor:com.tectonic.ui:checkbox'
default: false
trustServerCertificate:
title: Trust Server Certificate
description: Trust Server Ceritificate
type: boolean
x-descriptors:
- 'urn:alm:descriptor:com.tectonic.ui:checkbox'
default: true
types:
in:
mediaType: application/json
Expand All @@ -99,7 +113,7 @@ spec:
- key: password
value: '{{password}}'
- key: url
value: 'jdbc:sqlserver://{{serverName}}:{{serverPort}};databaseName={{databaseName}};trustServerCertificate=true;'
value: 'jdbc:sqlserver://{{serverName}}:{{serverPort}};databaseName={{databaseName}};encrypt={{encrypt}};trustServerCertificate={{trustServerCertificate}};'
- key: driverClassName
value: 'com.microsoft.sqlserver.jdbc.SQLServerDriver'
from:
Expand Down

0 comments on commit 068cf42

Please sign in to comment.