mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
17 lines
303 B
C++
17 lines
303 B
C++
#include "sqlite3_query_result.h"
|
|
|
|
#include <cstdio>
|
|
|
|
bool Sqlite3QueryResult::next_row() {
|
|
return false;
|
|
}
|
|
|
|
const char* Sqlite3QueryResult::get_cell(const int index) {
|
|
return nullptr;
|
|
}
|
|
|
|
Sqlite3QueryResult::Sqlite3QueryResult() : QueryResult() {
|
|
}
|
|
|
|
Sqlite3QueryResult::~Sqlite3QueryResult() {
|
|
} |