src/strip.vala
[app.mailtrimmer] / src / strip.vala
index 88cf364..340d852 100644 (file)
@@ -370,7 +370,7 @@ 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);
                 
@@ -616,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 = "";