Method: GDA::SQL::Statement#structure
- Defined in:
- ext/gda/gda_statement.c
#structure ⇒ Object
51 52 53 54 55 56 57 58 59 |
# File 'ext/gda/gda_statement.c', line 51
static VALUE structure(VALUE self)
{
GdaStatement * stmt = gda_statement_unwrap(self);
GdaSqlStatement * sqlst;
g_object_get(G_OBJECT(stmt), "structure", &sqlst, NULL);
return TypedData_Wrap_Struct(cStructure, &structure_type, sqlst);
}
|