1
1
module TinyTds
2
2
class Client
3
3
4
- @@ default_query_options = {
5
- :as => :hash ,
6
- : symbolize_keys => false ,
7
- : cache_rows => true ,
8
- : timezone => :local ,
9
- : empty_sets => true
4
+ @default_query_options = {
5
+ as : :hash ,
6
+ symbolize_keys : false ,
7
+ cache_rows : true ,
8
+ timezone : :local ,
9
+ empty_sets : true
10
10
}
11
11
12
12
attr_reader :query_options
13
13
14
14
class << self
15
15
16
- def default_query_options
17
- @@default_query_options
18
- end
16
+ attr_reader :default_query_options
19
17
20
18
# Most, if not all, iconv encoding names can be found by ruby. Just in case, you can
21
19
# overide this method to return a string name that Encoding.find would work with. Default
@@ -25,19 +23,28 @@ def transpose_iconv_encoding(encoding)
25
23
encoding
26
24
end
27
25
28
- end
26
+ def local_offset
27
+ ::Time . local ( 2010 ) . utc_offset . to_r / 86_400
28
+ end
29
29
30
+ end
30
31
31
- def initialize ( opts = { } )
32
- raise ArgumentError , 'missing :host option if no :dataserver given' if opts [ :dataserver ] . to_s . empty? && opts [ :host ] . to_s . empty?
32
+ # rubocop:disable Metrics/AbcSize
33
+ # rubocop:disable Metrics/MethodLength
34
+ # rubocop:disable Metrics/CyclomaticComplexity
35
+ # rubocop:disable Metrics/PerceivedComplexity
36
+ def initialize ( opts = { } )
37
+ if opts [ :dataserver ] . to_s . empty? && opts [ :host ] . to_s . empty?
38
+ raise ArgumentError , 'missing :host option if no :dataserver given'
39
+ end
33
40
opts [ :username ] = parse_username ( opts )
34
- @query_options = @@ default_query_options. dup
41
+ @query_options = self . class . default_query_options . dup
35
42
opts [ :password ] = opts [ :password ] . to_s if opts [ :password ] && opts [ :password ] . to_s . strip != ''
36
43
opts [ :appname ] ||= 'TinyTds'
37
44
opts [ :tds_version ] = tds_versions_setter ( opts )
38
45
opts [ :login_timeout ] ||= 60
39
46
opts [ :timeout ] ||= 5
40
- opts [ :encoding ] = ( opts [ :encoding ] . nil? || opts [ :encoding ] . downcase == 'utf8' ) ? 'UTF-8' : opts [ :encoding ] . upcase
47
+ opts [ :encoding ] = opts [ :encoding ] . nil? || opts [ :encoding ] . casecmp ( 'utf8' ) . zero? ? 'UTF-8' : opts [ :encoding ] . upcase
41
48
opts [ :port ] ||= 1433
42
49
opts [ :dataserver ] = "#{ opts [ :host ] } :#{ opts [ :port ] } " if opts [ :dataserver ] . to_s . empty?
43
50
forced_integer_keys = [ :login_timeout , :port , :timeout ]
@@ -58,24 +65,19 @@ def active?
58
65
!closed? && !dead?
59
66
end
60
67
61
-
62
68
private
63
69
64
- def self . local_offset
65
- ::Time . local ( 2010 ) . utc_offset . to_r / 86400
66
- end
67
-
68
70
def parse_username ( opts )
69
71
host = opts [ :host ]
70
72
username = opts [ :username ]
71
73
return username if username . nil? || !opts [ :azure ]
72
- return username if username . include? ( "@" ) && !username . include? ( " database.windows.net" )
73
- user , domain = username . split ( "@" )
74
+ return username if username . include? ( '@' ) && !username . include? ( ' database.windows.net' )
75
+ user , domain = username . split ( '@' )
74
76
domain ||= host
75
77
"#{ user } @#{ domain . split ( '.' ) . first } "
76
78
end
77
79
78
- def tds_versions_setter ( opts = { } )
80
+ def tds_versions_setter ( opts = { } )
79
81
v = opts [ :tds_version ] || ENV [ 'TDSVER' ] || '7.3'
80
82
TDS_VERSIONS_SETTERS [ v . to_s ]
81
83
end
@@ -107,19 +109,19 @@ def tds_versions_setter(opts={})
107
109
# The integer values of the constants are poorly chosen.
108
110
#
109
111
TDS_VERSIONS_GETTERS = {
110
- 0 => { : name => 'DBTDS_UNKNOWN' , : description => 'Unknown' } ,
111
- 1 => { : name => 'DBTDS_2_0' , : description => 'Pre 4.0 SQL Server' } ,
112
- 2 => { : name => 'DBTDS_3_4' , : description => 'Microsoft SQL Server (3.0)' } ,
113
- 3 => { : name => 'DBTDS_4_0' , : description => '4.0 SQL Server' } ,
114
- 4 => { : name => 'DBTDS_4_2' , : description => '4.2 SQL Server' } ,
115
- 5 => { : name => 'DBTDS_4_6' , : description => '2.0 OpenServer and 4.6 SQL Server.' } ,
116
- 6 => { : name => 'DBTDS_4_9_5' , : description => '4.9.5 (NCR) SQL Server' } ,
117
- 7 => { : name => 'DBTDS_5_0' , : description => '5.0 SQL Server' } ,
118
- 8 => { : name => 'DBTDS_7_0' , : description => 'Microsoft SQL Server 7.0' } ,
119
- 9 => { : name => 'DBTDS_7_1/DBTDS_8_0' , : description => 'Microsoft SQL Server 2000' } ,
120
- 10 => { : name => 'DBTDS_7_2/DBTDS_9_0' , : description => 'Microsoft SQL Server 2005' } ,
121
- 11 => { : name => 'DBTDS_7_3' , : description => 'Microsoft SQL Server 2008' } ,
122
- 12 => { : name => 'DBTDS_7_4' , : description => 'Microsoft SQL Server 2012/2014' }
112
+ 0 => { name : 'DBTDS_UNKNOWN' , description : 'Unknown' } ,
113
+ 1 => { name : 'DBTDS_2_0' , description : 'Pre 4.0 SQL Server' } ,
114
+ 2 => { name : 'DBTDS_3_4' , description : 'Microsoft SQL Server (3.0)' } ,
115
+ 3 => { name : 'DBTDS_4_0' , description : '4.0 SQL Server' } ,
116
+ 4 => { name : 'DBTDS_4_2' , description : '4.2 SQL Server' } ,
117
+ 5 => { name : 'DBTDS_4_6' , description : '2.0 OpenServer and 4.6 SQL Server.' } ,
118
+ 6 => { name : 'DBTDS_4_9_5' , description : '4.9.5 (NCR) SQL Server' } ,
119
+ 7 => { name : 'DBTDS_5_0' , description : '5.0 SQL Server' } ,
120
+ 8 => { name : 'DBTDS_7_0' , description : 'Microsoft SQL Server 7.0' } ,
121
+ 9 => { name : 'DBTDS_7_1/DBTDS_8_0' , description : 'Microsoft SQL Server 2000' } ,
122
+ 10 => { name : 'DBTDS_7_2/DBTDS_9_0' , description : 'Microsoft SQL Server 2005' } ,
123
+ 11 => { name : 'DBTDS_7_3' , description : 'Microsoft SQL Server 2008' } ,
124
+ 12 => { name : 'DBTDS_7_4' , description : 'Microsoft SQL Server 2012/2014' }
123
125
} . freeze
124
126
125
127
end
0 commit comments