method

allow_identity_inserts

v1.1.6 - Show latest stable - Class: Fixtures
allow_identity_inserts(table_name, enable)
public

No documentation available.

# File activerecord/lib/active_record/connection_adapters/sybase_adapter.rb, line 678
  def allow_identity_inserts(table_name, enable)
      @connection.execute "SET IDENTITY_INSERT #{table_name} #{enable ? 'ON' : 'OFF'}" rescue nil
  end