Sha256: 0e6d4defab5c3b88028d03ef0cc7aff71325be1cca74d3f495ec8ddbd4b88755

Contents?: true

Size: 753 Bytes

Versions: 1

Compression:

Stored size: 753 Bytes

Contents

%w{
  active_support/json/encoding
}.each do |active_support_3_requirement|
  require active_support_3_requirement
end if ::ActiveSupport::VERSION::MAJOR == 3

module Mysql2xxxx
  class JSON
    include ExtraOutputs
    
    attr_reader :properties
    
    def initialize(options = {})
      @properties = Properties.new options
    end
    
    def to_file(f)
      @client = ::Mysql2::Client.new properties.database_config
      first = true
      f.write '['
      @client.query(properties.execute).each do |hsh|
        line = if first
          first = false
          hsh.to_json
        else
          ',' + hsh.to_json
        end
        f.write line
      end
      f.write ']'
      nil
    ensure
      @client.try :close
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mysql2xxxx-0.0.3 lib/mysql2xxxx/json.rb