Class: OCI8::TDO::Attr

Inherits:
Object
  • 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.



464
465
466
467
468
469
470
471
# File 'lib/oci8/object.rb', line 464

def initialize(con, , val_offset, ind_offset)
  if .respond_to? :name
    @name = .name.downcase.intern
  end
  @datatype, @typeinfo, @val_size, @ind_size, @alignment, = 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.



461
462
463
# File 'lib/oci8/object.rb', line 461

def alignment
  @alignment
end

#datatypeObject (readonly)

Returns the value of attribute datatype.



462
463
464
# File 'lib/oci8/object.rb', line 462

def datatype
  @datatype
end

#ind_offsetObject (readonly)

Returns the value of attribute ind_offset.



460
461
462
# File 'lib/oci8/object.rb', line 460

def ind_offset
  @ind_offset
end

#nameObject (readonly)

Returns the value of attribute name.



458
459
460
# File 'lib/oci8/object.rb', line 458

def name
  @name
end

#typeinfoObject (readonly)

Returns the value of attribute typeinfo.



463
464
465
# File 'lib/oci8/object.rb', line 463

def typeinfo
  @typeinfo
end

#val_offsetObject (readonly)

Returns the value of attribute val_offset.



459
460
461
# File 'lib/oci8/object.rb', line 459

def val_offset
  @val_offset
end

Instance Method Details

#next_offsetObject



472
473
474
# File 'lib/oci8/object.rb', line 472

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