Method: GDA::SQL::Statement#structure

Defined in:
ext/gda/gda_statement.c

#structureObject



35
36
37
38
39
40
41
42
43
44
45
# File 'ext/gda/gda_statement.c', line 35

static VALUE structure(VALUE self)
{
    GdaStatement * stmt;
    GdaSqlStatement * sqlst;

    Data_Get_Struct(self, GdaStatement, stmt);

    g_object_get(G_OBJECT(stmt), "structure", &sqlst, NULL);

    return Data_Wrap_Struct(cStructure, NULL, gda_sql_statement_free, sqlst);
}