| GNOME Data Access manual | |||
|---|---|---|---|
| <<< Previous Page | Home | Up | Next Page >>> | 
| typedef GdaCommand; enum GdaCommandType; GdaCommand* gda_command_new (const gchar *text, GdaCommandType type); void gda_command_free (GdaCommand *cmd); const gchar* gda_command_get_text (GdaCommand *cmd); void gda_command_set_text (GdaCommand *cmd, const gchar *text); GdaCommandType gda_command_get_command_type (GdaCommand *cmd); void gda_command_set_command_type (GdaCommand *cmd, GdaCommandType type); | 
| typedef enum {
	GDA_COMMAND_TYPE_SQL = GNOME_Database_COMMAND_TYPE_SQL,
	GDA_COMMAND_TYPE_XML = GNOME_Database_COMMAND_TYPE_XML,
	GDA_COMMAND_TYPE_PROCEDURE = GNOME_Database_COMMAND_TYPE_PROCEDURE,
	GDA_COMMAND_TYPE_TABLE = GNOME_Database_COMMAND_TYPE_TABLE,
	GDA_COMMAND_TYPE_INVALID = GNOME_Database_COMMAND_TYPE_INVALID
} GdaCommandType; | 
| void gda_command_set_command_type (GdaCommand *cmd, GdaCommandType type); |