guint new_id;
+ gboolean is_key;
+
gchar *table_name;
guint id_field;
gchar *field_name;
priv->id);
stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, sql, NULL, NULL);
}
+ g_free (sql);
error = NULL;
if (gda_connection_statement_execute_non_select (priv->commons->gdacon, stmt, NULL, NULL, &error) == 1)
{
if (id_field == 0)
{
+ /* find if field is the primary key */
+ sql = g_strdup_printf ("SELECT column_name"
+ " FROM _key_column_usage AS c"
+ " INNER JOIN _table_constraints AS t"
+ " ON c.table_catalog = t.table_catalog"
+ " AND c.table_schema = t.table_schema"
+ " AND c.table_name = t.table_name"
+ " WHERE t.table_name = '%s'"
+ " AND t.constraint_type = 'PRIMARY KEY'"
+ " AND c.column_name = '%s'",
+ table_name,
+ field_name);
+ error = NULL;
+ dm = gda_meta_store_extract (gda_connection_get_meta_store (priv->gdacon),
+ sql,
+ &error,
+ NULL);
+ if (dm == NULL || error != NULL)
+ {
+ g_warning ("Unable to get the primary key: %s.",
+ error != NULL && error->message != NULL ? error->message : "no details");
+ }
+ is_key = (gda_data_model_get_n_rows (dm) > 0);
+
error = NULL;
sql = g_strdup_printf ("SELECT COALESCE (MAX (id), 0) FROM %sfields",
priv->commons->prefix);
(error != NULL && error->message != NULL ? error->message : "No details."));
}
id_field++;
+
+ g_free (sql);
g_object_unref (stmt);
+ g_object_unref (dm);
error = NULL;
sql = g_strdup_printf ("INSERT INTO %sfields"
- " (id, id_tables, name)"
- " VALUES (%d, %d, '%s')",
+ " (id, id_tables, name, is_key)"
+ " VALUES (%d, %d, '%s', %s)",
priv->commons->prefix,
id_field,
priv->id,
- field_name);
+ field_name,
+ is_key ? "TRUE" : "FALSE");
stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, sql, NULL, NULL);
gda_connection_statement_execute_non_select (priv->commons->gdacon, stmt, NULL, NULL, &error);
if (error != NULL)
g_warning ("Error saving new field: %s",
(error->message != NULL ? error->message : "No details."));
}
+
+ g_free (sql);
g_object_unref (stmt);
+ g_object_unref (dm);
}
id_saved = g_strconcat (id_saved, g_strdup_printf ("%d,", id_field), NULL);
}
(error->message != NULL ? error->message : "No details."));
}
g_object_unref (stmt);
+ g_free (sql);
g_signal_emit (table, klass->updated_signal_id, 0);