mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-11 13:21:10 +01:00
Cleaned up QueryResult.
This commit is contained in:
parent
614129ce2f
commit
5c1a702722
@ -6,60 +6,39 @@ bool QueryResult::next_row() {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *QueryResult::get_cell(const int index) {
|
const char *QueryResult::get_cell_chr(const int index) {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
const String QueryResult::get_cell_str(const int index) {
|
String QueryResult::get_cell(const int index) {
|
||||||
return String(get_cell(index));
|
return String(get_cell_chr(index));
|
||||||
}
|
}
|
||||||
|
|
||||||
const bool QueryResult::get_cell_bool(const int index) {
|
bool QueryResult::get_cell_bool(const int index) {
|
||||||
return get_cell_int(index);
|
return get_cell_int(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
const int QueryResult::get_cell_int(const int index) {
|
int QueryResult::get_cell_int(const int index) {
|
||||||
if (is_cell_null(index)) {
|
if (is_cell_null(index)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
//todo better way
|
return get_cell(index).to_int();
|
||||||
std::stringstream ss;
|
|
||||||
ss.str(get_cell(index));
|
|
||||||
|
|
||||||
int r;
|
|
||||||
ss >> r;
|
|
||||||
|
|
||||||
return r;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const float QueryResult::get_cell_float(const int index) {
|
float QueryResult::get_cell_float(const int index) {
|
||||||
if (is_cell_null(index)) {
|
if (is_cell_null(index)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
//todo better way
|
return get_cell(index).to_float();
|
||||||
std::stringstream ss;
|
|
||||||
ss.str(get_cell(index));
|
|
||||||
|
|
||||||
float r;
|
|
||||||
ss >> r;
|
|
||||||
|
|
||||||
return r;
|
|
||||||
}
|
}
|
||||||
const double QueryResult::get_cell_double(const int index) {
|
double QueryResult::get_cell_double(const int index) {
|
||||||
if (is_cell_null(index)) {
|
if (is_cell_null(index)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
//todo better way
|
return get_cell(index).to_double();
|
||||||
std::stringstream ss;
|
|
||||||
ss.str(get_cell(index));
|
|
||||||
|
|
||||||
double r;
|
|
||||||
ss >> r;
|
|
||||||
|
|
||||||
return r;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool QueryResult::is_cell_null(const int index) {
|
bool QueryResult::is_cell_null(const int index) {
|
||||||
@ -75,3 +54,17 @@ QueryResult::QueryResult() {
|
|||||||
|
|
||||||
QueryResult::~QueryResult() {
|
QueryResult::~QueryResult() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void QueryResult::_bind_methods() {
|
||||||
|
ClassDB::bind_method(D_METHOD("next_row"), &QueryResult::next_row);
|
||||||
|
|
||||||
|
ClassDB::bind_method(D_METHOD("get_cell", "index"), &QueryResult::get_cell);
|
||||||
|
ClassDB::bind_method(D_METHOD("get_cell_bool", "index"), &QueryResult::get_cell_bool);
|
||||||
|
ClassDB::bind_method(D_METHOD("get_cell_int", "index"), &QueryResult::get_cell_int);
|
||||||
|
ClassDB::bind_method(D_METHOD("get_cell_float", "index"), &QueryResult::get_cell_float);
|
||||||
|
ClassDB::bind_method(D_METHOD("get_cell_double", "index"), &QueryResult::get_cell_double);
|
||||||
|
|
||||||
|
ClassDB::bind_method(D_METHOD("is_cell_null", "index"), &QueryResult::is_cell_null);
|
||||||
|
|
||||||
|
ClassDB::bind_method(D_METHOD("get_last_insert_rowid"), &QueryResult::get_last_insert_rowid);
|
||||||
|
}
|
||||||
|
@ -1,28 +1,31 @@
|
|||||||
#ifndef QUERY_RESULT_H
|
#ifndef QUERY_RESULT_H
|
||||||
#define QUERY_RESULT_H
|
#define QUERY_RESULT_H
|
||||||
|
|
||||||
#include "core/string.h"
|
#include "core/ustring.h"
|
||||||
|
|
||||||
#include "core/reference.h"
|
#include "core/reference.h"
|
||||||
|
|
||||||
class QueryResult : public Reference {
|
class QueryResult : public Reference {
|
||||||
RCPP_OBJECT(QueryResult, Reference);
|
GDCLASS(QueryResult, Reference);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
virtual bool next_row();
|
virtual bool next_row();
|
||||||
virtual const char *get_cell(const int index);
|
virtual const char *get_cell_chr(const int index);
|
||||||
virtual const String get_cell_str(const int index);
|
virtual String get_cell(const int index);
|
||||||
virtual const bool get_cell_bool(const int index);
|
virtual bool get_cell_bool(const int index);
|
||||||
virtual const int get_cell_int(const int index);
|
virtual int get_cell_int(const int index);
|
||||||
virtual const float get_cell_float(const int index);
|
virtual float get_cell_float(const int index);
|
||||||
virtual const double get_cell_double(const int index);
|
virtual double get_cell_double(const int index);
|
||||||
|
|
||||||
virtual bool is_cell_null(const int index);
|
virtual bool is_cell_null(const int index);
|
||||||
|
|
||||||
virtual int get_last_insert_rowid();
|
virtual int get_last_insert_rowid();
|
||||||
|
|
||||||
QueryResult();
|
QueryResult();
|
||||||
virtual ~QueryResult();
|
virtual ~QueryResult();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
static void _bind_methods();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user