49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
// vim: set ts=4 sw=4 tw=99 noet:
|
|
//
|
|
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
|
|
// Copyright (C) The AMX Mod X Development Team.
|
|
//
|
|
// This software is licensed under the GNU General Public License, version 3 or higher.
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
|
// https://alliedmods.net/amxmodx-license
|
|
|
|
//
|
|
// MySQL Module
|
|
//
|
|
|
|
#ifndef _INCLUDE_SOURCEMOD_MYSQL_DATABASE_H
|
|
#define _INCLUDE_SOURCEMOD_MYSQL_DATABASE_H
|
|
|
|
#include "MysqlHeaders.h"
|
|
#include "MysqlDriver.h"
|
|
|
|
namespace SourceMod
|
|
{
|
|
class MysqlDriver;
|
|
|
|
class MysqlDatabase : public IDatabase
|
|
{
|
|
friend class MysqlQuery;
|
|
public:
|
|
MysqlDatabase(MYSQL *mysql, MysqlDriver *drvr);
|
|
~MysqlDatabase();
|
|
public:
|
|
void FreeHandle();
|
|
ISQLDriver *Driver();
|
|
public:
|
|
IQuery *PrepareQueryFmt(const char *fmt, ...);
|
|
IQuery *PrepareQueryFmt(const char *fmt, va_list ap);
|
|
IQuery *PrepareQuery(const char *query);
|
|
int QuoteString(const char *str, char buffer[], size_t maxlen, size_t *newsize);
|
|
bool SetCharacterSet(const char *characterset);
|
|
private:
|
|
void Disconnect();
|
|
private:
|
|
MYSQL *m_pMysql;
|
|
MysqlDriver *m_pParent;
|
|
};
|
|
};
|
|
|
|
|
|
#endif //_INCLUDE_SOURCEMOD_MYSQL_DATABASE_H
|