You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-03 23:50:33 +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
|