blob: 0167509a50784f2e64cd1153bb1e71b3c0e61c61 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef LOG_H
#define LOG_H
#include "db/db.h"
#include "coreSQLiteStudio_global.h"
#include <QString>
#include <QHash>
#include <QList>
#include <QVariant>
class QueryExecutorStep;
API_EXPORT QString getLogDateTime();
API_EXPORT void logSql(Db* db, const QString& str, const QHash<QString,QVariant>& args, Db::Flags flags);
API_EXPORT void logSql(Db* db, const QString& str, const QList<QVariant>& args, Db::Flags flags);
API_EXPORT void logExecutorStep(QueryExecutorStep* step);
API_EXPORT void logExecutorAfterStep(const QString& str);
API_EXPORT void setSqlLoggingEnabled(bool enabled);
API_EXPORT void setSqlLoggingFilter(const QString& filter);
API_EXPORT void setExecutorLoggingEnabled(bool enabled);
#endif // LOG_H
|