/* * Copyright (C) 2012 - Juan Ferrer Toribio * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef SQL_UPDATE_H #define SQL_UPDATE_H #include "sql-dml.h" #include "sql-field.h" #define SQL_TYPE_UPDATE (sql_update_get_type ()) #define SQL_UPDATE(object) (G_TYPE_CHECK_INSTANCE_CAST (object, SQL_TYPE_UPDATE, SqlUpdate)) #define SQL_IS_UPDATE(object) (G_TYPE_CHECK_INSTANCE_TYPE (object, SQL_TYPE_UPDATE)) typedef struct _SqlUpdate SqlUpdate; typedef struct _SqlUpdateClass SqlUpdateClass; typedef struct _SqlUpdateSet SqlUpdateSet; /** * SqlUpdateSet: * @field: an #SqlField * @expr: an #SqlExpr * * Defines a field for the SET clause for an #SqlUpdate. **/ struct _SqlUpdateSet { SqlField * field; SqlExpr * expr; }; /** * SqlUpdate: * @set: (element-type Sql.UpdateSet): **/ struct _SqlUpdate { SqlDml parent; GSList * set; // List of SqlUpdateSet }; struct _SqlUpdateClass { /* */ SqlDmlClass parent; }; GType sql_update_get_type (); SqlUpdate * sql_update_new (); void sql_update_add_set (SqlUpdate * obj, SqlField * field, SqlExpr * expr); #endif