GError *error;
- GdaMetaContext mcontext = {"_tables", 0, NULL, NULL};
+ GdaMetaContext *mcontext;
GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex);
dm = NULL;
+
if (update_meta_store)
{
- gdaex_meta_store_udpate (gdaex, &mcontext);
+ mcontext = gda_meta_context_new ();
+
+ gda_meta_context_set_table (mcontext, "_tables");
+ gdaex_meta_store_udpate (gdaex, mcontext);
+
+ gda_meta_context_free (mcontext);
}
error = NULL;
GError *error;
GValue *gval;
- GdaMetaContext mcontext = {"_columns", 1, NULL, NULL};
+ GdaMetaContext *mcontext;
GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex);
if (update_meta_store)
{
- mcontext.column_names = g_new (gchar *, 1);
- mcontext.column_names[0] = "table_name";
- mcontext.column_values = g_new (GValue *, 1);
- mcontext.column_values[0] = gda_value_new (G_TYPE_STRING);
- g_value_take_string (mcontext.column_values[0],
- gda_sql_identifier_quote (table_name, priv->gda_conn, NULL, FALSE, FALSE));
+ mcontext = gda_meta_context_new ();
+
+ gda_meta_context_set_table (mcontext, "_columns");
- gdaex_meta_store_udpate (gdaex, &mcontext);
+ gval = gda_value_new (G_TYPE_STRING);
+ g_value_set_string (gval, table_name);
+ gda_meta_context_set_column (mcontext, "table_name", gval, priv->gda_conn);
+
+ gdaex_meta_store_udpate (gdaex, mcontext);
+
+ gda_value_free (gval);
+ gda_meta_context_free (mcontext);
}
gval = gda_value_new (G_TYPE_STRING);
error != NULL && error->message != NULL ? error->message : _("no detail."));
}
+ gda_value_free (gval);
+
return dm;
}