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 6f4b391 commit 3cee83cCopy full SHA for 3cee83c
CHANGELOG.md
@@ -4,6 +4,7 @@
4
5
* Reduce view information reflection to per table vs. column. Fixes #552
6
* The `user_options` parsing. Works for hash/array. Fixes #535
7
+* Pass the `:contained` option to TinyTDS. Fixes #527
8
9
10
## v5.0.2
lib/active_record/connection_adapters/sqlserver_adapter.rb
@@ -363,7 +363,8 @@ def dblib_connect(config)
363
login_timeout: config_login_timeout(config),
364
timeout: config_timeout(config),
365
encoding: config_encoding(config),
366
- azure: config[:azure]
+ azure: config[:azure],
367
+ contained: config[:contained]
368
).tap do |client|
369
if config[:azure]
370
client.execute('SET ANSI_NULLS ON').do
0 commit comments