We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e568f93 + 44377c3 commit e29ca36Copy full SHA for e29ca36
NEWS
@@ -39,6 +39,10 @@ PHP NEWS
39
. Fixed bug GH-9298 (Signal handler called after rshutdown leads to crash).
40
(Erki Aring)
41
42
+- PDO_Firebird:
43
+ . Fixed bug GH-9971 (Incorrect NUMERIC value returned from PDO_Firebird).
44
+ (cmb)
45
+
46
- Session:
47
. Fixed GH-9932 (session name silently fails with . and [). (David Carlier)
48
ext/pdo_firebird/firebird_statement.c
@@ -385,6 +385,8 @@ static int firebird_stmt_get_col(
385
case SQL_INT64:
386
n = *(ISC_INT64*)var->sqldata;
387
break;
388
+ case SQL_DOUBLE:
389
+ break;
390
EMPTY_SWITCH_DEFAULT_CASE()
391
}
392
0 commit comments