Method: Informix::Slob#flags
- Defined in:
- ext/informixc.c
#flags ⇒ Object
slob.flags => fixnum
Returns the create-time flags of the SLOB
1433 1434 1435 1436 1437 |
# File 'ext/informixc.c', line 1433
static VALUE
rb_slob_flags(VALUE self)
{
return slob_specget(self, slob_flags);
}
|