Class: OCIHandle

Inherits:
Object show all
Defined in:
ext/oci8/stmt.c,
ext/oci8/oci8lib.c

Direct Known Subclasses

OCI8, OCI8::BindType::Base, OCI8::Cursor

Instance Method Summary collapse

Constructor Details

#initializeObject



31
32
33
34
# File 'ext/oci8/oci8lib.c', line 31

static VALUE oci8_handle_initialize(VALUE self)
{
    rb_raise(rb_eNameError, "private method `new' called for %s:Class", rb_class2name(CLASS_OF(self)));
}

Instance Method Details

#freeObject



52
53
54
55
56
57
58
# File 'ext/oci8/oci8lib.c', line 52

static VALUE oci8_handle_free(VALUE self)
{
    oci8_base_t *base = DATA_PTR(self);

    oci8_base_free(base);
    return self;
}