Class: Sequel::TinyTDS::Database

Inherits:
Database show all
Includes:
MSSQL::DatabaseMethods
Defined in:
lib/sequel/adapters/tinytds.rb

Constant Summary

Constants included from MSSQL::DatabaseMethods

MSSQL::DatabaseMethods::AUTO_INCREMENT, MSSQL::DatabaseMethods::DECIMAL_TYPE_RE, MSSQL::DatabaseMethods::SERVER_VERSION_RE, MSSQL::DatabaseMethods::SERVER_VERSION_SQL, MSSQL::DatabaseMethods::SQL_BEGIN, MSSQL::DatabaseMethods::SQL_COMMIT, MSSQL::DatabaseMethods::SQL_ROLLBACK, MSSQL::DatabaseMethods::SQL_ROLLBACK_TO_SAVEPOINT, MSSQL::DatabaseMethods::SQL_SAVEPOINT

Constants inherited from Database

Database::ADAPTERS, Database::AUTOINCREMENT, Database::CASCADE, Database::COLUMN_DEFINITION_ORDER, Database::COMMA_SEPARATOR, Database::MSSQL_DEFAULT_RE, Database::MYSQL_TIMESTAMP_RE, Database::NOT_NULL, Database::NO_ACTION, Database::NULL, Database::POSTGRES_DEFAULT_RE, Database::PRIMARY_KEY, Database::RESTRICT, Database::SET_DEFAULT, Database::SET_NULL, Database::SQL_BEGIN, Database::SQL_COMMIT, Database::SQL_RELEASE_SAVEPOINT, Database::SQL_ROLLBACK, Database::SQL_ROLLBACK_TO_SAVEPOINT, Database::SQL_SAVEPOINT, Database::STRING_DEFAULT_RE, Database::TEMPORARY, Database::TRANSACTION_BEGIN, Database::TRANSACTION_COMMIT, Database::TRANSACTION_ISOLATION_LEVELS, Database::TRANSACTION_ROLLBACK, Database::UNDERSCORE, Database::UNIQUE, Database::UNSIGNED

Instance Attribute Summary

Attributes included from MSSQL::DatabaseMethods

#mssql_unicode_strings

Attributes inherited from Database

#default_schema, #log_warn_duration, #loggers, #opts, #pool, #prepared_statements, #sql_log_level, #transaction_isolation_level

Instance Method Summary collapse

Methods included from MSSQL::DatabaseMethods

#database_type, #server_version, #supports_savepoints?, #supports_transaction_isolation_levels?, #tables

Methods inherited from Database

#<<, #[], adapter_class, adapter_scheme, #adapter_scheme, #add_column, #add_index, #add_servers, #alter_table, #call, #cast_type_literal, connect, #create_or_replace_view, #create_table, #create_table!, #create_table?, #create_view, #database_type, #disconnect, #drop_column, #drop_index, #drop_table, #drop_view, #dump_indexes_migration, #dump_schema_migration, #dump_table_schema, #each_server, #fetch, #from, #get, identifier_input_method, #identifier_input_method, identifier_input_method=, #identifier_input_method=, #identifier_output_method, identifier_output_method, #identifier_output_method=, identifier_output_method=, #indexes, #initialize, #inspect, #literal, #log_info, #log_yield, #logger=, #query, #quote_identifiers=, quote_identifiers=, #quote_identifiers?, #remove_servers, #rename_column, #rename_table, #run, #schema, #select, #serial_primary_key_options, #servers, #set_column_default, #set_column_type, single_threaded=, #single_threaded?, #supports_prepared_transactions?, #supports_savepoints?, #supports_transaction_isolation_levels?, #synchronize, #table_exists?, #tables, #test_connection, #transaction, #typecast_value, #uri, #url

Methods included from Metaprogramming

#meta_def

Constructor Details

This class inherits a constructor from Sequel::Database

Instance Method Details

#connect(server) ⇒ Object

Transfer the :host and :user options to the :dataserver and :username options.



12
13
14
15
16
17
18
# File 'lib/sequel/adapters/tinytds.rb', line 12

def connect(server)
  opts = server_opts(server)
  opts[:dataserver] = opts[:host]
  opts[:username] = opts[:user]
  set_mssql_unicode_strings
  TinyTds::Client.new(opts)
end

#dataset(opts = nil) ⇒ Object

Return instance of Sequel::TinyTDS::Dataset with the given options.



21
22
23
# File 'lib/sequel/adapters/tinytds.rb', line 21

def dataset(opts = nil)
  TinyTDS::Dataset.new(self, opts)
end

#execute(sql, opts = {}) ⇒ Object

Execute the given sql on the server. If the :return option is present, its value should be a method symbol that is called on the TinyTds::Result object returned from executing the sql. The value of such a method is returned to the caller. Otherwise, if a block is given, it is yielded the result object. If no block is given and a :return is not present, nil is returned.



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/sequel/adapters/tinytds.rb', line 31

def execute(sql, opts={})
  synchronize(opts[:server]) do |c|
    begin
      m = opts[:return]
      r = nil
      log_yield(sql) do
        r = c.execute(sql)
        return r.send(m) if m
      end
      yield(r) if block_given?
    rescue TinyTds::Error => e
      raise_error(e, :disconnect=>(c.closed? || (c.respond_to?(:dead?) && c.dead?)))
    ensure
     r.cancel if r && c.sqlsent?
    end
  end
end

#execute_ddl(sql, opts = {}) ⇒ Object

Execute the DDL sql on the database and return nil.



61
62
63
64
# File 'lib/sequel/adapters/tinytds.rb', line 61

def execute_ddl(sql, opts={})
  execute(sql, opts.merge(:return=>:each))
  nil
end

#execute_dui(sql, opts = {}) ⇒ Object

Return the number of rows modified by the given sql.



50
51
52
# File 'lib/sequel/adapters/tinytds.rb', line 50

def execute_dui(sql, opts={})
  execute(sql, opts.merge(:return=>:do))
end

#execute_insert(sql, opts = {}) ⇒ Object

Return the value of the autogenerated primary key (if any) for the row inserted by the given sql.



56
57
58
# File 'lib/sequel/adapters/tinytds.rb', line 56

def execute_insert(sql, opts={})
  execute(sql, opts.merge(:return=>:insert))
end