Class: OCI8::TDO::Attr

Inherits:
Object show all
Defined in:
lib/oci8/object.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(con, metadata, val_offset, ind_offset) ⇒ Attr

Returns a new instance of Attr.



484
485
486
487
488
489
490
491
# File 'lib/oci8/object.rb', line 484

def initialize(con, , val_offset, ind_offset)
  if .respond_to? :name
    @name = .name.downcase.intern
  end
  @datatype, @typeinfo, @val_size, @ind_size, @alignment, @set_proc, @get_proc, = OCI8::TDO.(con, )
  @val_offset = (val_offset + @alignment - 1) & ~(@alignment - 1)
  @ind_offset = ind_offset
end

Instance Attribute Details

#alignmentObject (readonly)

Returns the value of attribute alignment.



479
480
481
# File 'lib/oci8/object.rb', line 479

def alignment
  @alignment
end

#datatypeObject (readonly)

Returns the value of attribute datatype.



480
481
482
# File 'lib/oci8/object.rb', line 480

def datatype
  @datatype
end

#get_procObject (readonly)

Returns the value of attribute get_proc.



483
484
485
# File 'lib/oci8/object.rb', line 483

def get_proc
  @get_proc
end

#ind_offsetObject (readonly)

Returns the value of attribute ind_offset.



478
479
480
# File 'lib/oci8/object.rb', line 478

def ind_offset
  @ind_offset
end

#nameObject (readonly)

Returns the value of attribute name.



476
477
478
# File 'lib/oci8/object.rb', line 476

def name
  @name
end

#set_procObject (readonly)

Returns the value of attribute set_proc.



482
483
484
# File 'lib/oci8/object.rb', line 482

def set_proc
  @set_proc
end

#typeinfoObject (readonly)

Returns the value of attribute typeinfo.



481
482
483
# File 'lib/oci8/object.rb', line 481

def typeinfo
  @typeinfo
end

#val_offsetObject (readonly)

Returns the value of attribute val_offset.



477
478
479
# File 'lib/oci8/object.rb', line 477

def val_offset
  @val_offset
end

Instance Method Details

#next_offsetObject



492
493
494
# File 'lib/oci8/object.rb', line 492

def next_offset
  [@val_offset + @val_size, @ind_offset + @ind_size]
end