|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-11-06 16:17 UTC] ab@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: ab
[2016-11-06 16:17 UTC] ab@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 16:00:01 2025 UTC |
Description: ------------ The loop and enter information on the type blob sub_type text fields using "PDO_FIREBIR" and / or "ibase" the system is lost. Test script: --------------- Script to create the database table "Firebird" CREATE TABLE TESTE (CAMPO BLOB SUB_TYPE 1 SEGMENT SIZE 4096); Script PHP $con = new PDO("firebird:dbname=...".$base,"SYSDBA","masterkey"); $valor = 'asdfghijklmnopqrstuvxwyz'; for($i = 0; $i <= 1; $i ++){ echo $i; $valor += $i; $ins = $con->prepare("INSERT INTO TESTE( CAMPO ) VALUES (:CAMPO)"); $ins->bindParam(":CAMPO", $valor ); $ins->execute(); } Expected result: ---------------- Insert three records in the table TESTE Actual result: -------------- PHP hangs and does not insert the resgistros.