Mogelijkheid om query to kopieren als raw c++ string.

This commit is contained in:
Eelke Klein 2017-10-05 16:02:06 +02:00
parent a9534d543e
commit 33cf39b799
10 changed files with 70 additions and 18 deletions

View file

@ -67,6 +67,7 @@ public:
bool canClose();
void copyQueryAsCString();
void copyQueryAsRawCppString();
void exportData(const QString &filename);
QString fileName() const { return m_fileName; }
@ -103,7 +104,8 @@ private:
void addLog(QString s);
std::string getCommand() const;
QString getCommand() const;
std::string getCommandUtf8() const;
void explain_ready(ExplainRoot::SPtr explain);
void query_ready(Expected<std::shared_ptr<Pgsql::Result>> dbres, qint64 elapsedms);