method

copy_table_data

rails latest stable - Class: ActiveRecord::ConnectionAdapters::FirebirdAdapter

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1.2.6) is shown here.

copy_table_data(from, to)
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/firebird_adapter.rb, line 671
        def copy_table_data(from, to)
          execute "INSERT INTO #{to} SELECT * FROM #{from}", "Copy #{from} data to #{to}"
        end