mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-01-06 19:09:33 -06:00
Following clang-tidy checks bugprone-*, concurrency-*, modernize-*, and google-*. - namespace-comments - using-namespaces - virtual vs override/final - explicit ctor/conversion operator
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
#pragma once
|
|
#ifndef ORM_SQLITECONNECTION_HPP
|
|
#define ORM_SQLITECONNECTION_HPP
|
|
|
|
#include "orm/macros/systemheader.hpp"
|
|
TINY_SYSTEM_HEADER
|
|
|
|
#include "orm/databaseconnection.hpp"
|
|
|
|
TINYORM_BEGIN_COMMON_NAMESPACE
|
|
|
|
namespace Orm
|
|
{
|
|
|
|
/*! SQLite database connection. */
|
|
class SHAREDLIB_EXPORT SQLiteConnection final : public DatabaseConnection
|
|
{
|
|
Q_DISABLE_COPY(SQLiteConnection)
|
|
|
|
public:
|
|
/*! Constructor. */
|
|
explicit SQLiteConnection(
|
|
std::function<Connectors::ConnectionName()> &&connection,
|
|
const QString &database = "", const QString &tablePrefix = "",
|
|
const QVariantHash &config = {});
|
|
/*! Virtual destructor. */
|
|
inline ~SQLiteConnection() final = default;
|
|
|
|
/*! Get a schema builder instance for the connection. */
|
|
std::unique_ptr<SchemaBuilder> getSchemaBuilder() final;
|
|
|
|
protected:
|
|
/*! Get the default query grammar instance. */
|
|
std::unique_ptr<QueryGrammar> getDefaultQueryGrammar() const final;
|
|
/*! Get the default schema grammar instance. */
|
|
std::unique_ptr<SchemaGrammar> getDefaultSchemaGrammar() const final;
|
|
/*! Get the default post processor instance. */
|
|
std::unique_ptr<QueryProcessor> getDefaultPostProcessor() const final;
|
|
};
|
|
|
|
} // namespace Orm
|
|
|
|
TINYORM_END_COMMON_NAMESPACE
|
|
|
|
#endif // ORM_SQLITECONNECTION_HPP
|