error = NULL;
if (!gda_holder_set_value (holder, gval, &error))
{
- g_warning ("Unable to set the holder for parameter «%s»: %s.",
- param_name,
+ g_warning ("Unable to set the holder for parameter: %s.",
error != NULL && error->message != NULL ? error->message : "no details");
}
g_free (param_name);
column->gtype = mt_column->gtype;
column->pkey = mt_column->pkey;
column->nullok = mt_column->nullok;
- column->default_value = g_strdup (mt_column->default_value);
+ if (mt_column->default_value != NULL)
+ {
+ column->default_value = g_strdup (mt_column->default_value);
+ }
+ else
+ {
+ column->default_value = NULL;
+ }
table->fields = g_slist_append (table->fields, column);
if (verbose)
if (!gda_server_operation_set_value_at (op,
column->column_name,
&error,
- g_strdup_printf ("/FIELDS_A/@COLUMN_NAME/%d", i)))
+ "/FIELDS_A/@COLUMN_NAME/%d", i))
{
g_warning ("Error on setting GdaServerOperation's value: %s.",
error != NULL && error->message != NULL ? error->message : "no details");
if (!gda_server_operation_set_value_at (op,
column->column_type,
&error,
- g_strdup_printf ("/FIELDS_A/@COLUMN_TYPE/%d", i)))
+ "/FIELDS_A/@COLUMN_TYPE/%d", i))
{
g_warning ("Error on setting GdaServerOperation's value: %s.",
error != NULL && error->message != NULL ? error->message : "no details");
continue;
}
+
+ if (column->pkey)
+ {
+ error = NULL;
+ if (!gda_server_operation_set_value_at (op,
+ "TRUE",
+ &error,
+ "/FIELDS_A/@COLUMN_PKEY/%d", i))
+ {
+ g_warning ("Error on setting GdaServerOperation's value: %s.",
+ error != NULL && error->message != NULL ? error->message : "no details");
+ continue;
+ }
+ }
+
+ if (!column->nullok)
+ {
+ error = NULL;
+ if (!gda_server_operation_set_value_at (op,
+ "TRUE",
+ &error,
+ "/FIELDS_A/@COLUMN_NNUL/%d", i))
+ {
+ g_warning ("Error on setting GdaServerOperation's value: %s.",
+ error != NULL && error->message != NULL ? error->message : "no details");
+ continue;
+ }
+ }
+
+ if (column->default_value != NULL)
+ {
+ error = NULL;
+ if (!gda_server_operation_set_value_at (op,
+ column->default_value,
+ &error,
+ "/FIELDS_A/@COLUMN_DEFAULT/%d", i))
+ {
+ g_warning ("Error on setting GdaServerOperation's value: %s.",
+ error != NULL && error->message != NULL ? error->message : "no details");
+ continue;
+ }
+ }
}
}
g_object_unref (mstruct);