From 565bc971014896bd7217e357cdfabc49e4c73125 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 24 Nov 2012 16:32:02 +0100 Subject: [PATCH] Added rows counter during copying data. --- .anjuta_sym_db.db | Bin 34816 -> 34816 bytes src/main.c | 22 ++++++++++++++++++---- tests/db.db | Bin 3072 -> 3072 bytes 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.anjuta_sym_db.db b/.anjuta_sym_db.db index 3dcb3620e2badbbc7bb0872b9f23ea09217b661b..f0289ebf34429fbdfaa5cfa23e80b9de18036d45 100644 GIT binary patch delta 93 zcmZpez|=5-X@WH4#)&e{j2ky5%oJufvof-}Irw1t`R9?j_pEFU+dU$;4QcnwSz_l9-f}S`1W>WIitd09XDT_5c6? delta 93 zcmZpez|=5-X@WH4jEOSNj59VS%oJufu`;l}Irw1t`R9?j>5yFU+dU$;4QcnwSz_l9-f}S`1W>WIitd06LT$W&i*H diff --git a/src/main.c b/src/main.c index 22284eb..aea1712 100644 --- a/src/main.c +++ b/src/main.c @@ -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, ¶ms, &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); diff --git a/tests/db.db b/tests/db.db index 5cf743a2cc89ab49c774311967e6e3a9f5b91529..dc43486743d21deaecf2191ff3d504622f8fb506 100644 GIT binary patch delta 48 wcmZpWXpop7EqITCfq@x{nSk`Ui8{uN_ckUhXI`wp!otc36k^&e$nu350O;5Wy#N3J delta 49 wcmZpWXpop7EqH^0fq@x_nV|U8L>*(s8ygdrGqW;+q&7D)x3O%Vz?{bn0P@cYn*aa+ -- 2.49.0