Module Sequel::MSSQL::DatabaseMethods
In: lib/sequel/adapters/shared/mssql.rb

Methods

Constants

AUTO_INCREMENT = 'IDENTITY(1,1)'.freeze
SERVER_VERSION_RE = /^(\d+)\.(\d+)\.(\d+)/.freeze
SERVER_VERSION_SQL = "SELECT CAST(SERVERPROPERTY('ProductVersion') AS varchar)".freeze
SQL_BEGIN = "BEGIN TRANSACTION".freeze
SQL_COMMIT = "COMMIT TRANSACTION".freeze
SQL_ROLLBACK = "IF @@TRANCOUNT > 0 ROLLBACK TRANSACTION".freeze
SQL_ROLLBACK_TO_SAVEPOINT = 'IF @@TRANCOUNT > 0 ROLLBACK TRANSACTION autopoint_%d'.freeze
SQL_SAVEPOINT = 'SAVE TRANSACTION autopoint_%d'.freeze
DECIMAL_TYPE_RE = /number|numeric|decimal/io   The types to check for 0 scale to transform :decimal types to :integer.

Attributes

mssql_unicode_strings  [RW]  Whether to use N’’ to quote strings, which allows unicode characters inside the strings. True by default for compatibility, can be set to false for a possible performance increase. This sets the default for all datasets created from this Database object.

Public Instance methods

Microsoft SQL Server uses the :mssql type.

[Source]

    # File lib/sequel/adapters/shared/mssql.rb, line 27
27:       def database_type
28:         :mssql
29:       end

The version of the MSSQL server, as an integer (e.g. 10001600 for SQL Server 2008 Express).

[Source]

    # File lib/sequel/adapters/shared/mssql.rb, line 33
33:       def server_version(server=nil)
34:         return @server_version if @server_version
35:         @server_version = synchronize(server) do |conn|
36:           (conn.server_version rescue nil) if conn.respond_to?(:server_version)
37:         end
38:         unless @server_version
39:           m = SERVER_VERSION_RE.match(fetch(SERVER_VERSION_SQL).single_value.to_s)
40:           @server_version = (m[1].to_i * 1000000) + (m[2].to_i * 10000) + m[3].to_i
41:         end
42:         @server_version
43:       end

MSSQL supports savepoints, though it doesn‘t support committing/releasing them savepoint

[Source]

    # File lib/sequel/adapters/shared/mssql.rb, line 46
46:       def supports_savepoints?
47:         true
48:       end

MSSQL supports transaction isolation levels

[Source]

    # File lib/sequel/adapters/shared/mssql.rb, line 51
51:       def supports_transaction_isolation_levels?
52:         true
53:       end

Microsoft SQL Server supports using the INFORMATION_SCHEMA to get information on tables.

[Source]

    # File lib/sequel/adapters/shared/mssql.rb, line 57
57:       def tables(opts={})
58:         information_schema_tables('BASE TABLE', opts)
59:       end

Microsoft SQL Server supports using the INFORMATION_SCHEMA to get information on views.

[Source]

    # File lib/sequel/adapters/shared/mssql.rb, line 63
63:       def views(opts={})
64:         information_schema_tables('VIEW', opts)
65:       end

[Validate]