From 389f8c65e293737e0a1e7841191df27bc0819825 Mon Sep 17 00:00:00 2001 From: denizzz Date: Sat, 13 Aug 2011 01:14:51 +0800 Subject: [PATCH 1/2] fix postgres.d(44): Error: cannot implicitly convert expression (PQescapeString(buffer,cast(const(char*))cast(immutable(char)*)sqlData,sqlData.length)) of type ulong to int --- postgres.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres.d b/postgres.d index 23f9820..5955ede 100644 --- a/postgres.d +++ b/postgres.d @@ -41,7 +41,7 @@ class PostgreSql : Database { string escape(string sqlData) { char* buffer = (new char[sqlData.length * 2 + 1]).ptr; - int size = PQescapeString (buffer, sqlData.ptr, sqlData.length); + ulong size = PQescapeString (buffer, sqlData.ptr, sqlData.length); string ret = assumeUnique(buffer[0..size]); From f68f0eb3081f228b5f990a532781ead19fac28ee Mon Sep 17 00:00:00 2001 From: denizzz Date: Sat, 13 Aug 2011 01:34:24 +0800 Subject: [PATCH 2/2] struct size is unknown --- postgres.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postgres.d b/postgres.d index 5955ede..6ee166e 100644 --- a/postgres.d +++ b/postgres.d @@ -167,8 +167,8 @@ string copyCString(const char* c, int actualLength = -1) { } extern(C) { - struct PGconn; - struct PGresult; + struct PGconn {}; + struct PGresult {}; void PQfinish(PGconn*); PGconn* PQconnectdb(const char*);