php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #52746 PDO SQLite error "bind or column index out of range" with some placeholders
Submitted: 2010-08-30 20:20 UTC Modified: 2020-03-08 04:22 UTC
Votes:4
Avg. Score:3.8 ± 0.8
Reproduced:3 of 3 (100.0%)
Same Version:2 (66.7%)
Same OS:1 (33.3%)
From: damien at tournoud dot net Assigned: cmb (profile)
Status: No Feedback Package: PDO SQLite
PHP Version: 5.3.3 OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
50 - 14 = ?
Subscribe to this entry?

 
 [2010-08-30 20:20 UTC] damien at tournoud dot net
Description:
------------
The following snippet results in a PDOException with message "SQLSTATE[HY000]: General error: 25 bind or column index out of range".

For some reasons, relatively similar queries work (for example, without the aggregation, as in: "SELECT * FROM (SELECT :value value FROM sqlite_master) my_table" or without the table as in "SELECT COUNT(*) expression FROM (SELECT :value value) my_table").



Test script:
---------------
<?php
$db = new PDO('sqlite:/tmp/sqlite.db');
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$query = $db->prepare('SELECT COUNT(*) expression FROM (SELECT :value value FROM sqlite_master) my_table');
$query->execute(array(':value' => 'my_value'));
?>


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2010-08-31 10:46 UTC] pajoye@php.net
-Status: Open +Status: Feedback
 [2010-08-31 10:46 UTC] pajoye@php.net
hi Damien,

Do you use the bundled sqlite or a system version? If the latter, which version is it?
 [2010-08-31 11:15 UTC] damien at tournoud dot net
-Status: Feedback +Status: Open
 [2010-08-31 11:15 UTC] damien at tournoud dot net
That's on Debian, so it is using the system library. I'm able to reproduce that behavior on a wide range of PHP and SQLite versions:

PHP 5.2.6-1+lenny9 -- SQLite 3.5.9 (external)
PHP 5.3.2-0.dotdeb.2 -- SQLite 3.6.21 (external)
PHP trunk -- SQLite 3.7.0.1 (bundled)
 [2010-08-31 11:33 UTC] damien at tournoud dot net
This seems to work properly with unnamed placeholders.

For named placeholders, it seems to only fail when the placeholder is part of a branch of the query that is deadcode, and could potentially be removed by the optimizer:

FAILS: SELECT SUM(1) expression FROM (SELECT :value value FROM sqlite_master) my_table
PASS: SELECT SUM(value) expression FROM (SELECT :value value FROM sqlite_master) my_table
 [2011-01-06 01:32 UTC] scottmac@php.net
-Summary: SQLite error "bind or column index out of range" with some placeholders +Summary: PDO SQLite error "bind or column index out of range" with some placeholders
 [2016-06-27 15:27 UTC] cmb@php.net
-Package: SQLite related +Package: PDO SQLite
 [2020-02-24 07:48 UTC] cmb@php.net
-Status: Open +Status: Feedback -Assigned To: +Assigned To: cmb
 [2020-02-24 07:48 UTC] cmb@php.net
I cannot reproduce this with current PHP 7.3 (Windows, bundled
libsqlite); can anybody else reproduce this with any of actively
supported PHP versions[1]?

[1] <https://www.php.net/supported-versions.php>
 [2020-03-08 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 14:01:28 2024 UTC