php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #81052 Parameter binding with SKIP, FIRST, LIMIT do not work
Submitted: 2021-05-19 14:12 UTC Modified: -
From: madis at creditinfo dot ee Assigned:
Status: Open Package: PDO_INFORMIX (PECL)
PHP Version: 8.0.6 OS:
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: madis at creditinfo dot ee
New email:
PHP Version: OS:

 

 [2021-05-19 14:12 UTC] madis at creditinfo dot ee
Description:
------------
Parameter binding with SKIP, FIRST, LIMIT do not work. An old bug so OS, PHP and PDO_INFORMIX versions should not matter too much. Did the latest test with php:8.0.6-fpm Docker image and PDO_INFORMIX version 1.3.4.

Brought up on SO a long time ago: https://stackoverflow.com/questions/10803475/variable-binding-for-informix-returns-an-error

Test script:
---------------
$pdo = new PDO();
$sql = 'SELECT FIRST ? * FROM companies';
$query = $pdo->prepare($sql);
$query->execute([1]);
$result = $query->fetchAll(PDO::FETCH_ASSOC);
print_r($result);

Expected result:
----------------
No errors

Actual result:
--------------
Fatal error: Uncaught PDOException: SQLSTATE[HY004]: Invalid SQL data type: -11064 [Informix][Informix ODBC Driver]SQL data type out of range.

Patches

Add a Patch

Pull Requests

Add a Pull Request

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 23:01:27 2024 UTC