| Top |
Types and Values
| #define | GDA_TYPE_DDL_BUILDABLE |
| struct | GdaDdlBuildableInterface |
| enum | GdaDdlBuildableError |
| #define | GDA_DDL_BUILDABLE_ERROR |
| GdaDdlBuildable |
Known Implementations
GdaDdlBuildable is implemented by GdaDdlColumn, GdaDdlFkey, GdaDdlTable and GdaDdlView.
Description
GdaDdlBuildable represents an interface for writing and reading xml nodes. GdaDdlTable and GdaDdlView implement this interface.
Functions
gda_ddl_buildable_parse_node ()
gboolean gda_ddl_buildable_parse_node (GdaDdlBuildable *self,xmlNodePtr node,GError **error);
gda_ddl_buildable_write_node ()
gboolean gda_ddl_buildable_write_node (GdaDdlBuildable *self,xmlNodePtr node,GError **error);
Types and Values
struct GdaDdlBuildableInterface
struct GdaDdlBuildableInterface {
GTypeInterface parent_iface;
gboolean (*parse_node)(GdaDdlBuildable *self,
xmlNodePtr node,
GError **error);
gboolean (*write_node)(GdaDdlBuildable *self,
xmlNodePtr node,
GError **error);
};
