mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
4e55d649d7
Derivatives of Core::Object should be constructed through ClassName::construct(), to avoid handling ref-counted objects with refcount zero. Fixing the visibility means that misuses like this are more difficult.
38 lines
927 B
C++
38 lines
927 B
C++
/*
|
|
* Copyright (c) 2021, Jan de Visser <jan@de-visser.net>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibCore/Object.h>
|
|
#include <LibSQL/Database.h>
|
|
#include <SQLServer/Forward.h>
|
|
|
|
namespace SQLServer {
|
|
|
|
class DatabaseConnection final : public Core::Object {
|
|
C_OBJECT(DatabaseConnection)
|
|
|
|
public:
|
|
~DatabaseConnection() override = default;
|
|
|
|
static RefPtr<DatabaseConnection> connection_for(int connection_id);
|
|
int connection_id() const { return m_connection_id; }
|
|
int client_id() const { return m_client_id; }
|
|
RefPtr<SQL::Database> database() { return m_database; }
|
|
void disconnect();
|
|
int sql_statement(String const& sql);
|
|
|
|
private:
|
|
DatabaseConnection(String database_name, int client_id);
|
|
|
|
RefPtr<SQL::Database> m_database { nullptr };
|
|
String m_database_name;
|
|
int m_connection_id;
|
|
int m_client_id;
|
|
bool m_accept_statements { false };
|
|
};
|
|
|
|
}
|