]> saetta.ns0.it Git - solipa/territorio/commitdiff
Aggiunta la funzione Comuni::get_dm_order.
authorAndrea Zagli <azagli@libero.it>
Wed, 24 May 2017 13:38:43 +0000 (15:38 +0200)
committerAndrea Zagli <azagli@libero.it>
Wed, 24 May 2017 13:38:43 +0000 (15:38 +0200)
src/comuni.c
src/comuni.h

index 7047994acee722a9a4590fe876bf69dbb595b3c2..8d8b870e79799a94c99223ee2434f5da2ea821f1 100644 (file)
@@ -278,7 +278,7 @@ GtkWidget
 }
 
 GdaDataModel
-*territorio_comuni_get_dm (TerritorioCommons *commons, gboolean con_provincia, const gchar *where)
+*territorio_comuni_get_dm_order (TerritorioCommons *commons, gboolean con_provincia, const gchar *where, const gchar *order)
 {
        GdaDataModel *dm;
 
@@ -351,11 +351,12 @@ GdaDataModel
                                 NULL);
        g_value_unset (gval);
 
-       sql = g_strdup_printf ("SELECT %s FROM %s WHERE %s%s",
+       sql = g_strdup_printf ("SELECT %s FROM %s WHERE %s%s%s",
                               gdaex_sql_builder_get_sql_select (sqlb, NULL, NULL),
                               gdaex_sql_builder_get_sql_from (sqlb, NULL, NULL),
                               gdaex_sql_builder_get_sql_where (sqlb, NULL, NULL),
-                              where != NULL ? where : "");
+                              where != NULL ? where : "",
+                              order != NULL ? g_strdup_printf (" ORDER BY %s", order) : "");
 
        dm = gdaex_query (commons->gdaex, sql);
        g_free (sql);
@@ -363,6 +364,12 @@ GdaDataModel
        return dm;
 }
 
+GdaDataModel
+*territorio_comuni_get_dm (TerritorioCommons *commons, gboolean con_provincia, const gchar *where)
+{
+       territorio_comuni_get_dm_order (commons, con_provincia, where, NULL);
+}
+
 /* PRIVATE */
 static void
 territorio_comuni_carica (TerritorioComuni *territorio_comuni)
index 204f4386b751ee825dbbd800fa5f07a229c5688b..1e66925a9bbbc1d12c80f43b093fb6531cecb41b 100644 (file)
@@ -60,6 +60,7 @@ TerritorioComuni *territorio_comuni_new (TerritorioCommons *commons, gboolean se
 GtkWidget *territorio_comuni_get_widget (TerritorioComuni *territorio_comuni);
 
 GdaDataModel *territorio_comuni_get_dm (TerritorioCommons *commons, gboolean con_provincia, const gchar *where);
+GdaDataModel *territorio_comuni_get_dm_order (TerritorioCommons *commons, gboolean con_provincia, const gchar *where, const gchar *order);
 
 
 G_END_DECLS