mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
17 lines
285 B
C
17 lines
285 B
C
|
#ifndef MYSQL_QUERY_RESULT_H
|
||
|
#define MYSQL_QUERY_RESULT_H
|
||
|
|
||
|
#include "core/query_result.h"
|
||
|
|
||
|
#include <sqlite3.h>
|
||
|
|
||
|
class Sqlite3QueryResult : public QueryResult {
|
||
|
public:
|
||
|
bool next_row();
|
||
|
const char* get_cell(const int index);
|
||
|
|
||
|
Sqlite3QueryResult();
|
||
|
~Sqlite3QueryResult();
|
||
|
};
|
||
|
|
||
|
#endif
|