X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fhttp%2Fpages%2Fexecquerypage.cpp;h=8ef4c48bd9ec76a9ac6499ec81e3c39f579dd13b;hb=3dc3ac3cfe10b7196a7977e9c041c29fa141c35e;hp=f86579a45f62a19c3ef4582f45ab4bd4a33e4572;hpb=52c0819bfc1d083c6e0738f75f0d7eeba521295a;p=fms.git diff --git a/src/http/pages/execquerypage.cpp b/src/http/pages/execquerypage.cpp index f86579a..8ef4c48 100644 --- a/src/http/pages/execquerypage.cpp +++ b/src/http/pages/execquerypage.cpp @@ -8,12 +8,28 @@ const std::string ExecQueryPage::GeneratePage(const std::string &method, const std::map &queryvars) { std::string content=""; + std::string query=""; if(queryvars.find("formaction")!=queryvars.end() && (*queryvars.find("formaction")).second=="execute" && queryvars.find("query")!=queryvars.end() && (*queryvars.find("query")).second!="") { - SQLite3DB::Recordset rs=m_db->Query((*queryvars.find("query")).second); + query=(*queryvars.find("query")).second; + SQLite3DB::Recordset rs=m_db->Query(query); content+=""; + if(rs.Count()>0) + { + content+=""; + for(int i=0; i"; content+=""; - content+=""; + content+=""; content+=""; content+="";