]> saetta.ns0.it Git - libgdaex/commitdiff
Adjustment.
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Fri, 28 Jun 2013 10:56:42 +0000 (12:56 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Fri, 28 Jun 2013 10:56:42 +0000 (12:56 +0200)
src/gdaex.c

index 04788535d4600058c6f51b9f04f4c26da50a1321..60d5a1e9220959f04e51b36774b9b9f75bf1db89 100644 (file)
@@ -3193,23 +3193,25 @@ const gchar
 
        error = NULL;
        stmt = gda_sql_builder_get_statement (b, &error);
-       if (error != NULL || stmt == NULL)
+       if (stmt == NULL || error != NULL)
                {
                        g_warning (_("Unable to get a GdaStatement from GdaSqlBuilder: %s"),
-                                  error->message != NULL ? error->message : _("no details"));
+                                  error != NULL && error->message != NULL ? error->message : _("no details"));
                }
-
-       error = NULL;
-       ret = gda_statement_to_sql_extended (stmt,
-                                            priv->gda_conn,
-                                            NULL,
-                                            0,
-                                            NULL,
-                                            &error);
-       if (error != NULL)
+       else
                {
-                       g_warning (_("Unable to get an SQL statement from GdaStatement: %s"),
-                                  error->message != NULL ? error->message : _("no details"));
+                       error = NULL;
+                       ret = gda_statement_to_sql_extended (stmt,
+                                                            priv->gda_conn,
+                                                            NULL,
+                                                            0,
+                                                            NULL,
+                                                            &error);
+                       if (ret == NULL || error != NULL)
+                               {
+                                       g_warning (_("Unable to get an SQL statement from GdaStatement: %s"),
+                                                  error != NULL && error->message != NULL ? error->message : _("no details"));
+                               }
                }
 
        if (b != NULL)