php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #49880 mysqli::prepare doesnt accept special chars in field names
Submitted: 2009-10-14 19:38 UTC Modified: 2009-10-14 19:44 UTC
From: thiago@php.net Assigned:
Status: Not a bug Package: MySQLi related
PHP Version: 5.2.11 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 !
Your email address:
MUST BE VALID
Solve the problem:
49 - 29 = ?
Subscribe to this entry?

 
 [2009-10-14 19:38 UTC] thiago@php.net
Description:
------------
This bug's PHP Version is set to 5.2.11 but that's not true. I cannot upgrade my version from 5.2.6 at the moment. Sorry about this.

I was trying to prepare a statement where a field name had a "-" and it was returning (boolean)FALSE. As soon as I updated my database field "e-mail" to "email", and changed my statement to match the field again, it worked like a charm.

Reproduce code:
---------------
<?php
$mysqli = new mysqli('localhost','root','pass');
$mysqli->select_db('test');

$query = "INSERT INTO
            dummy
            ( name, e-mail, title, text)
            VALUES (
              ?,    ?,    ?,        ?)";

var_dump($mysqli->prepare($query));
?>

Expected result:
----------------
object(mysqli_stmt)

Actual result:
--------------
false(boolean)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-10-14 19:44 UTC] uw@php.net
If MySQL does not support the syntax, PHP can't. 
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 07:01:28 2024 UTC