module ActiveRecord::ConnectionAdapters::SQLServer::CoreExt::ODBC::Database

Public Instance Methods

run_block(*args) { |sth = run(*args)| ... } click to toggle source
# File lib/active_record/connection_adapters/sqlserver/core_ext/odbc.rb, line 20
def run_block(*args)
  yield sth = run(*args)
  sth.drop
end