From 5b38e9d7e0cc43b60f17668012516ed271a64a24 Mon Sep 17 00:00:00 2001 From: Robert Klotzner Date: Mon, 26 Nov 2012 21:49:57 +0100 Subject: [PATCH] Fixed some property syntax issues. --- database.d | 16 ++++++++-------- postgres.d | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/database.d b/database.d index 5e44341..e893ef2 100644 --- a/database.d +++ b/database.d @@ -38,7 +38,7 @@ interface Database { a = to!string(e); } else if (arg == typeid(null)) { a = null; - } else assert(0, "invalid type " ~ arg.toString ); + } else assert(0, "invalid type " ~ arg.toString() ); args ~= Variant(a); } @@ -114,7 +114,7 @@ struct Row { } int opApply(int delegate(ref string, ref string) dg) { - foreach(a, b; toAA) + foreach(a, b; toAA()) mixin(yield("a, b")); return 0; @@ -134,10 +134,10 @@ interface ResultSet { string[] fieldNames(); // this is a range that can offer other ranges to access it - bool empty(); - Row front(); - void popFront(); - int length(); + bool empty() @property; + Row front() @property; + void popFront() ; + int length() @property; /* deprecated */ final ResultSet byAssoc() { return this; } } @@ -164,7 +164,7 @@ class SelectBuilder : SqlBuilder { int limit; int limitStart; - string toString() { + override string toString() { string sql = "SELECT "; // the fields first @@ -443,7 +443,7 @@ string fixupSqlForDataObjectUse(string sql, string[string] keyMapping = null) { auto from = sql[start..i]; auto pieces = from.split(","); foreach(p; pieces) { - p = p.strip; + p = p.strip(); start = 0; i = 0; while(i < p.length && p[i] != ' ' && p[i] != '\n' && p[i] != '\t' && p[i] != ',') diff --git a/postgres.d b/postgres.d index a0070b0..9fb9548 100644 --- a/postgres.d +++ b/postgres.d @@ -84,7 +84,7 @@ class PostgresResult : ResultSet { void popFront() { position++; if(position < numRows) - fetchNext; + fetchNext(); } int length() {