# File lib/yaml_db/serialization_helper.rb, line 67
      def self.truncate_table(table)
        begin
          ActiveRecord::Base.connection.execute("TRUNCATE #{Utils.quote_table(table)}")
        rescue Exception
          ActiveRecord::Base.connection.execute("DELETE FROM #{Utils.quote_table(table)}")
        end
      end