if(debug) {
// Send MySQL Query syntax to console for debugging purposes!
this.db.getPlugin().getLogger().info(this.query);
}
DeleteQuery dQ = this.db.delete("sqlite_sequence");
dQ.where("name", table.replace("#__", this.db.getPrefix()));
dQ.parse().exec(debug);
return this.db.updateQuery(this);
}