# File lib/arjdbc/sqlite3/adapter.rb, line 321
321: def self.binary_to_string(value)
322: if value.respond_to?(:force_encoding) && value.encoding != Encoding::ASCII_8BIT
323: value = value.force_encoding(Encoding::ASCII_8BIT)
324: end
325:
326: if value[0..3] == "\0000b64"
327: value[4..1].unpack('m*').first
328: else
329: value
330: end
331: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.