# File lib/jdbc_adapter/jdbc_sqlite3.rb, line 299
      def self.binary_to_string(value)
        value.gsub(/%00|%25/n) do |b|
          case b
            when "%00" then "\0"
            when "%25" then "%"
          end
        end
      end