]> saetta.ns0.it Git - zakaudit/gui/commitdiff
On autofill it mixed tables/fields of different datasources. master
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 29 Oct 2013 07:42:39 +0000 (08:42 +0100)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 29 Oct 2013 07:42:39 +0000 (08:42 +0100)
src/datasources.c

index 98571edb3ca0304954a1491ac77a0513fb8febc3..1b1767be981a08f07e83a2a5adb8ae7adfcf45e8 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2013 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -365,9 +365,12 @@ datasources_add_all_tables (Datasources *datasources)
                                                                                        while (gtk_events_pending ()) gtk_main_iteration ();
 
                                                                                        /* check if already exists */
-                                                                                       sql = g_strdup_printf ("SELECT id FROM %stables WHERE name = '%s'",
+                                                                                       sql = g_strdup_printf ("SELECT id"
+                                                                                                              " FROM %stables WHERE name = '%s'"
+                                                                                                              " AND id_datasources = %d",
                                                                                                               priv->commons->prefix,
-                                                                                                              table_name);
+                                                                                                              table_name,
+                                                                                                              id_ds);
                                                                                        error = NULL;
                                                                                        stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, sql, NULL, &error);
                                                                                        if (stmt == NULL || error != NULL)
@@ -566,7 +569,10 @@ datasources_add_all_tables (Datasources *datasources)
                                                                                                                        field_name = gda_value_stringify (gda_data_model_get_value_at (dm_fields, 0, row_fields, NULL));
 
                                                                                                                        /* check if already exists */
-                                                                                                                       sql = g_strdup_printf ("SELECT id FROM %sfields WHERE id_tables = %d AND name = '%s'",
+                                                                                                                       sql = g_strdup_printf ("SELECT id"
+                                                                                                                                              " FROM %sfields"
+                                                                                                                                              " WHERE id_tables = %d"
+                                                                                                                                              " AND name = '%s'",
                                                                                                                                               priv->commons->prefix,
                                                                                                                                               new_id,
                                                                                                                                               field_name);