HxUtils/HxSql.h

25 lines
484 B
C
Raw Normal View History

2024-01-25 18:37:25 +08:00
#ifndef HXSQL_H
2024-01-11 16:14:21 +08:00
#define HXSQL_H
#include <QSqlDatabase>
class HxSql
{
public:
/**
* @brief
* @param filepath
* @param connectionName
* @return QSqlDatabase
*/
static QSqlDatabase open(QString filepath, QString connectionName);
/**
* @brief
* @param connectionName
*/
static void close(QString connectionName);
};
#endif // HXSQL_H