We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
:contained
1 parent 10e9eab commit 9f60ae1Copy full SHA for 9f60ae1
CHANGELOG.md
@@ -1,3 +1,10 @@
1
+## v4.2.18
2
+
3
+#### Changed
4
5
+* Pass the `:contained` option to TinyTDS. Fixes #527
6
7
8
## v4.2.17
9
10
#### Changed
lib/active_record/connection_adapters/sqlserver_adapter.rb
@@ -327,7 +327,8 @@ def dblib_connect(config)
327
login_timeout: config_login_timeout(config),
328
timeout: config_timeout(config),
329
encoding: config_encoding(config),
330
- azure: config[:azure]
+ azure: config[:azure],
331
+ contained: config[:contained]
332
).tap do |client|
333
if config[:azure]
334
client.execute('SET ANSI_NULLS ON').do
0 commit comments