SqlSelectFrom
Object Hierarchy:
Description:
[ CCode ( copy_function = "g_boxed_copy" , free_function = "g_boxed_free" , type_id = "gda_sql_select_from_get_type ()" ) ]
[ Compact ]
public class SqlSelectFrom
This structure represents the FROM clause of a SELECT statement, it lists targets and joins
Content:
Creation methods:
Methods:
- public SqlSelectFrom copy ()
Creates a new SqlSelectFrom structure initiated
with the values stored in this.
- public void free ()
Frees a SqlSelectFrom structure and its members.
- public string serialize ()
Creates a new string description of the FROM clause used in a SELECT
statement.
- public void take_new_join (SqlSelectJoin join)
Append join
to the joins in the FROM clause and set join
's parent to this; after call this function this owns join
then you must not free it.
- public void take_new_target (SqlSelectTarget target)
Append target
to the targets in the FROM clause and set
target
's parent to this; after call this function this owns
target
then you must not free it.
Fields: