00001 #include "dbutils.h" 00002 00003 // TODO: Check if there are other characters that need escaping! 00004 00005 QString DbUtils::escape(QString str) { 00006 return str.replace("\"", "\\\""); 00007 } 00008