Methods

Files

Class/Module Index [+]

Quicksearch

ActiveRecord::ConnectionAdapters::PostgreSQL::ArrayParser

Public Instance Methods

parse_pg_array(string) click to toggle source
# File lib/arjdbc/postgresql/base/array_parser.rb, line 14
def parse_pg_array(string)
  local_index = 0
  array = []
  while(local_index < string.length)
    case string[local_index]
    when BRACKET_OPEN
      local_index,array = parse_array_contents(array, string, local_index + 1)
    when BRACKET_CLOSE
      return array
    end
    local_index += 1
  end

  array
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.