Patch CannotSeeFormerlyUploadedPatch_HereAgain for PDO Firebird Bug #71652
Patch version 2016-02-24 08:31 UTC
Return to Bug #71652 |
Download this patch
Patch Revisions:
Developer: b.vonheesen@maprom.de
--- firebird_statement.c 2016-02-23 16:33:59.230795179 +0100
+++ firebird_statement.new 2016-02-23 16:34:40.206794325 +0100
@@ -335,6 +335,9 @@
break;
case SQL_INT64:
n = *(ISC_INT64*)var->sqldata;
+ break;
+ case SQL_DOUBLE:
+ n = *(double*)var->sqldata * 100;
}
*ptr = FETCH_BUF(S->fetch_buf[colno], char, CHAR_BUF_LEN, NULL);
|