|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2007-11-12 21:13 UTC] hp-php dot net at oeri dot ch
Description: ------------ It seems that PDOStatement->closeCursor is not implemented for pdo_firebird. I'm unable to re-use prepared statements... I tried to implement a minimalistic version: http://php.pastebin.com/f476261f8 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 02:00:02 2025 UTC |
The patch is/was faulty. To regain "compileability": diff -r1.18.2.1.2.5.2.6 firebird_statement.c 633c633 < if ((*S->name || S->cursor_open) && isc_dsql_free_statement(H->isc_status, &S->stmt, DSQL_close)) { --- > if ((*S->name || S->cursor_open) && isc_dsql_free_statement(S->H->isc_status, &S->stmt, DSQL_close)) {