src/strip.vala
[app.mailtrimmer] / src / strip.vala
index 5b55d52..53eb9c6 100644 (file)
@@ -370,9 +370,10 @@ public class Strip : GLib.Object {
        
        // initialize it with known data..
        // that should wipe out dupes.
-       var matches = this.execute("SELECT count(id) FROM Attachment WHERE id = %d".printf(
+       var matches = this.execute("SELECT count(id) as nid FROM Attachment WHERE id = %d".printf(
                        int.parse(sid)));  
-
+                GLib.error("Got Matches :%s", matches);
+                
                if (matches=="0") {      
                   GLib.error("Failed to find id  :%s", sid);
                   return;
@@ -605,7 +606,7 @@ public class Strip : GLib.Object {
                
                
        
-       var rc=  this.mysql.query(str);         
+       var rc=  this.mysql.query(str); 
        if ( rc != 0 ) {
 
                    GLib.debug("ERROR %u: Query failed: %s\n", this.mysql.errno(), this.mysql.error());
@@ -615,6 +616,8 @@ public class Strip : GLib.Object {
 
         var rs = mysql.use_result();
         
+        //GLib.debug("got %d rows", (int) rs.num_rows());
+        
         var got_row = false;
                string[] row;
                string ret = "";
@@ -624,6 +627,7 @@ public class Strip : GLib.Object {
                
                }
                if (!need_return) {
+                       GLib.debug("got %s", got_row ? "=Nothing=" : ret);
                        return got_row ? "" : ret;
                }
                if (!got_row) {