#include <db/db.h>
std::string db_safe(std::string str) {
str.insert(0, "\"");
str += "\"";
return str;
}