method
allow_identity_inserts
allow_identity_inserts(table_name, enable)
public
Hide source
# 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


