2017-03-02 14:37:32 +00:00
|
|
|
using Gee;
|
|
|
|
using Sqlite;
|
|
|
|
|
|
|
|
namespace Qlite {
|
|
|
|
|
|
|
|
public class Row {
|
|
|
|
private Map<string, string> text_map = new HashMap<string, string>();
|
|
|
|
private Map<string, long> int_map = new HashMap<string, long>();
|
|
|
|
private Map<string, double?> real_map = new HashMap<string, double?>();
|
|
|
|
|
|
|
|
public Row(Statement stmt) {
|
|
|
|
for (int i = 0; i < stmt.column_count(); i++) {
|
|
|
|
switch(stmt.column_type(i)) {
|
|
|
|
case TEXT:
|
|
|
|
text_map[stmt.column_name(i)] = stmt.column_text(i);
|
|
|
|
break;
|
|
|
|
case INTEGER:
|
|
|
|
int_map[stmt.column_name(i)] = (long) stmt.column_int64(i);
|
|
|
|
break;
|
|
|
|
case FLOAT:
|
|
|
|
real_map[stmt.column_name(i)] = stmt.column_double(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public T get<T>(Column<T> field) {
|
|
|
|
return field[this];
|
|
|
|
}
|
|
|
|
|
|
|
|
public string? get_text(string field) {
|
2017-03-09 20:46:16 +00:00
|
|
|
if (text_map.has_key(field)) {
|
2017-03-02 14:37:32 +00:00
|
|
|
return text_map[field];
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long get_integer(string field) {
|
|
|
|
return int_map[field];
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool has_integer(string field) {
|
2017-03-09 20:46:16 +00:00
|
|
|
return int_map.has_key(field);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public double get_real(string field) {
|
|
|
|
return real_map[field];
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool has_real(string field) {
|
2017-03-09 20:46:16 +00:00
|
|
|
return real_map.has_key(field) && real_map[field] != null;
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
2017-03-12 18:33:31 +00:00
|
|
|
}
|
2017-03-02 14:37:32 +00:00
|
|
|
|
2017-03-12 18:33:31 +00:00
|
|
|
public class RowIterator {
|
|
|
|
private Statement stmt;
|
2017-03-02 14:37:32 +00:00
|
|
|
|
2017-03-12 18:33:31 +00:00
|
|
|
public RowIterator.from_query_builder(QueryBuilder query) throws DatabaseError {
|
|
|
|
this.stmt = query.prepare();
|
|
|
|
}
|
2017-03-02 14:37:32 +00:00
|
|
|
|
2017-03-12 18:33:31 +00:00
|
|
|
public RowIterator(Database db, string sql, string[]? args = null) throws DatabaseError {
|
|
|
|
this.stmt = db.prepare(sql);
|
|
|
|
if (args != null) {
|
|
|
|
for (int i = 0; i < args.length; i++) {
|
|
|
|
stmt.bind_text(i, sql, sql.length);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-12 18:33:31 +00:00
|
|
|
}
|
2017-03-02 14:37:32 +00:00
|
|
|
|
2017-03-12 18:33:31 +00:00
|
|
|
public Row? next_value() {
|
|
|
|
if (stmt.step() == Sqlite.ROW) {
|
|
|
|
return new Row(stmt);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
2017-03-12 18:33:31 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class RowOption {
|
|
|
|
public Row? inner { get; private set; }
|
|
|
|
|
|
|
|
public RowOption(Row? row) {
|
|
|
|
this.inner = row;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool is_present() {
|
|
|
|
return inner != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public T get<T>(Column<T> field, T def = null) {
|
|
|
|
if (inner == null || field.is_null(inner)) return def;
|
|
|
|
return field[inner];
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|