mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-27 10:32:58 +02:00
16 lines
346 B
C++
Executable File
16 lines
346 B
C++
Executable File
#ifndef DATABASEUTILS_H
|
|
#define DATABASEUTILS_H
|
|
|
|
#include <stable.h>
|
|
#include "simpletypes.h"
|
|
|
|
namespace jop {
|
|
namespace dbUtils {
|
|
|
|
QSqlQuery buildSqlQuery(QSqlDatabase* db, const QString& type, const QString& tableName, const QStringList& fields, const VariantVector& values, const QString& whereCondition = "");
|
|
|
|
}
|
|
}
|
|
|
|
#endif // DATABASEUTILS_H
|