]> saetta.ns0.it Git - gdadbcopy/commitdiff
Added rows counter during copying data.
authorAndrea Zagli <azagli@libero.it>
Sat, 24 Nov 2012 15:32:02 +0000 (16:32 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 24 Nov 2012 15:32:02 +0000 (16:32 +0100)
.anjuta_sym_db.db
src/main.c
tests/db.db

index 3dcb3620e2badbbc7bb0872b9f23ea09217b661b..f0289ebf34429fbdfaa5cfa23e80b9de18036d45 100644 (file)
Binary files a/.anjuta_sym_db.db and b/.anjuta_sym_db.db differ
index 22284ebf4823a5e4e44d8115b1da1c485cfd24ac..aea1712672e22adaaa22b0c381c620e7d9935248 100644 (file)
@@ -80,14 +80,19 @@ copy_data ()
        GSList *lst_tables;
        GSList *lst_fields;
 
+       GError *error;
+
        gchar *sql;
        GdaDataModel *dm;
-       const GValue *gval;
 
-       GError *error;
+       guint row;
+       guint rows;
 
-       GdaStatement *stmt;
        GdaDataModelIter *iter;
+
+       GdaStatement *stmt;
+
+       const GValue *gval;
        GdaMetaTableColumn *column;
        GdaSet *params;
        GdaHolder *holder;
@@ -105,7 +110,7 @@ copy_data ()
                        g_free (sql);
                        if (dm != NULL)
                                {
-                                       g_printf ("\tTable: %s\n",
+                                       g_printf ("\tTable: %s",
                                                  table->name);
 
                                        iter = gda_data_model_create_iter (dm);
@@ -120,8 +125,16 @@ copy_data ()
                                        error = NULL;
                                        gda_statement_get_parameters (stmt, &params, &error);
 
+                                       row = 0;
+                                       rows = gda_data_model_get_n_rows (dm);
+
                                        while (gda_data_model_iter_move_next (iter))
                                                {
+                                                       g_printf ("\r\tTable: %s - %d of %d",
+                                                                 table->name,
+                                                                 ++row,
+                                                                 rows);
+
                                                        for (lst_fields = table->fields; lst_fields; lst_fields = lst_fields->next)
                                                                {
                                                                        column = (GdaMetaTableColumn *)lst_fields->data;
@@ -159,6 +172,7 @@ copy_data ()
                                                                        continue;
                                                                }
                                                }
+                                       g_printf ("\n");
 
                                        g_object_unref (params);
                                        g_object_unref (stmt);
index 5cf743a2cc89ab49c774311967e6e3a9f5b91529..dc43486743d21deaecf2191ff3d504622f8fb506 100644 (file)
Binary files a/tests/db.db and b/tests/db.db differ