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

This commit is contained in:
denizzz 2011-08-13 01:14:51 +08:00
parent e48c76759b
commit 389f8c65e2
1 changed files with 1 additions and 1 deletions

View File

@ -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]);