class HRecordPtr

Attributes

odb[R]
tableCursor[R]
type[R]

Public Class Methods

new(odb, type = nil) click to toggle source
# File lib/hdb/hodb.rb, line 63
def initialize(odb, type = nil)
  @odb = odb
  @tableCursor = @odb.tableCursor
  @type = type
end

Public Instance Methods

method_missing(sym, *args, &block) click to toggle source
# File lib/hdb/hodb.rb, line 69
def method_missing(sym, *args, &block)

  #puts "=======================================> #{sym.to_s}".red
  @odb.tableCursor = @tableCursor
  return @odb.send(sym, *args, &block)

end