gda-command

Name

gda-command -- 

Synopsis



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);

Description

Details

GdaCommand

typedef GNOME_Database_Command GdaCommand;


enum GdaCommandType

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;


gda_command_new ()

GdaCommand* gda_command_new                 (const gchar *text,
                                             GdaCommandType type);

text : 
type : 
Returns : 


gda_command_free ()

void        gda_command_free                (GdaCommand *cmd);

cmd : 


gda_command_get_text ()

const gchar* gda_command_get_text           (GdaCommand *cmd);

cmd : 
Returns : 


gda_command_set_text ()

void        gda_command_set_text            (GdaCommand *cmd,
                                             const gchar *text);

cmd : 
text : 


gda_command_get_command_type ()

GdaCommandType gda_command_get_command_type (GdaCommand *cmd);

cmd : 
Returns : 


gda_command_set_command_type ()

void        gda_command_set_command_type    (GdaCommand *cmd,
                                             GdaCommandType type);

cmd : 
type :