# File lib/amalgalite/csv_table_importer.rb, line 22
    def run
      @database.transaction do |db|
        db.prepare( insert_sql ) do |stmt|
          ::CSV.foreach( @csv_path, @options ) do |row|
            stmt.execute( row )
          end
        end
      end
    end