Move dlls/ to modules/
This commit is contained in:
68
modules/sqlite/sqlitepp/SqliteResultSet.h
Normal file
68
modules/sqlite/sqlitepp/SqliteResultSet.h
Normal file
@@ -0,0 +1,68 @@
|
||||
// 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
|
||||
|
||||
//
|
||||
// SQLite Module
|
||||
//
|
||||
|
||||
#ifndef _INCLUDE_SOURCEMOD_SQLITE_RESULTSET_H
|
||||
#define _INCLUDE_SOURCEMOD_SQLITE_RESULTSET_H
|
||||
|
||||
#include "SqliteHeaders.h"
|
||||
#include "SqliteDriver.h"
|
||||
#include "SqliteDatabase.h"
|
||||
#include "SqliteQuery.h"
|
||||
|
||||
namespace SourceMod
|
||||
{
|
||||
class SqliteResultSet : public IResultSet, public IResultRow
|
||||
{
|
||||
/**
|
||||
* IResultSet
|
||||
*/
|
||||
public:
|
||||
SqliteResultSet(SqliteQuery::SqliteResults &res);
|
||||
~SqliteResultSet();
|
||||
public:
|
||||
void FreeHandle();
|
||||
public:
|
||||
unsigned int RowCount();
|
||||
unsigned int FieldCount();
|
||||
const char *FieldNumToName(unsigned int num);
|
||||
bool FieldNameToNum(const char *name, unsigned int *columnId);
|
||||
public:
|
||||
bool IsDone();
|
||||
IResultRow *GetRow();
|
||||
void NextRow();
|
||||
void Rewind();
|
||||
public:
|
||||
/**
|
||||
* IResultRow
|
||||
*/
|
||||
public:
|
||||
const char *GetString(unsigned int columnId);
|
||||
double GetDouble(unsigned int columnId);
|
||||
float GetFloat(unsigned int columnId);
|
||||
int GetInt(unsigned int columnId);
|
||||
bool IsNull(unsigned int columnId);
|
||||
const char *GetRaw(unsigned int columnId, size_t *length);
|
||||
bool NextResultSet();
|
||||
private:
|
||||
const char *GetStringSafe(unsigned int columnId);
|
||||
private:
|
||||
char **m_pResults;
|
||||
unsigned int m_Columns;
|
||||
unsigned int m_Rows;
|
||||
unsigned int m_CurRow;
|
||||
unsigned int m_CurIndex;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
#endif //_INCLUDE_SOURCEMOD_SQLITE_RESULTSET_H
|
||||
Reference in New Issue
Block a user