php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #25179 sqlite appending one extra char at end of each table name
Submitted: 2003-08-20 11:01 UTC Modified: 2003-08-20 17:42 UTC
From: mrobinson@php.net Assigned:
Status: Closed Package: SQLite related
PHP Version: 4.3.3RC4 OS: RH-8.0
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: mrobinson@php.net
New email:
PHP Version: OS:

 

 [2003-08-20 11:01 UTC] mrobinson@php.net
Description:
------------
The sqlite library is appending an extra character onto
the end of any specified table name. For example, if I
specify a table name of 'foo' for a query, sqlite looks for a table named 'fooo'. It takes the last character of the table name supplied, and appends an extra one of those chars onto the end of the table name.

If I do a select and supply a table name of 'fo', sqlite will return data from the table 'foo'.

Sqlite was installed with pear.

Reproduce code:
---------------
# The table 'foo' exists and has data in it.
# returns data.

if ($db = @sqlite_open('test.db', 0666, $sqliteerror)) { 
    $result = sqlite_query($db,'SELECT * from "fo');
    var_dump(sqlite_fetch_array($result)); 
} else {
    die ($sqliteerror);
}

# Changing the name to 'foo' returns a
# 'no such table' error






Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-08-20 11:40 UTC] wez@php.net
Your script looks borked (are you using the correct quotes?).

Also, the is the last letter is missing from your name in your email address? Are you sure you aren't suffering from some weird brain<->finger packet loss problem? ;-)

 [2003-08-20 15:06 UTC] mrobinso@php.net
Where's that damn crack pipe....


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 05:01:29 2024 UTC