Class: OCI8::Cursor
Instance Method Summary collapse
-
#rowid ⇒ String
Gets the rowid of the last inserted, updated or deleted row.
Instance Method Details
#rowid ⇒ String
Gets the rowid of the last inserted, updated or deleted row. This cannot be used for select statements.
356 357 358 359 360 |
# File 'ext/oci8/stmt.c', line 356 static VALUE oci8_stmt_get_rowid(VALUE self) { oci8_base_t *base = oci8_check_typeddata(self, &oci8_stmt_data_type, 1); return oci8_get_rowid_attr(base, ACI_ATTR_ROWID, base->hp.stmt); } |