This commit is contained in:
Chenwenxuan
2024-03-06 14:54:30 +08:00
commit edac2715f0
1525 changed files with 809982 additions and 0 deletions

BIN
device/sqllite/MySQLite.dll Normal file

Binary file not shown.

View File

@@ -0,0 +1,12 @@
#ifndef MYSQLITE_GLOBAL_H
#define MYSQLITE_GLOBAL_H
#include <QtCore/qglobal.h>
#if defined(MYSQLITE_LIBRARY)
# define MYSQLITE_EXPORT Q_DECL_EXPORT
#else
# define MYSQLITE_EXPORT Q_DECL_IMPORT
#endif
#endif // MYSQLITE_GLOBAL_H

Binary file not shown.

26
device/sqllite/mysqlite.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef MYSQLITE_H
#define MYSQLITE_H
#include "MySQLite_global.h"
#include <QCoreApplication>
#include <QSqlDatabase>
#include <QSqlQuery>
#include <QVariant>
#include <QDateTime>
#include <QtDebug>
class MYSQLITE_EXPORT MySQLite
{
public:
MySQLite();
private:
QSqlDatabase db;
public:
int InitMySQLite();
QString GetMarkTitle(QString);
};
#endif // MYSQLITE_H