php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #31096 mysqli_stmt_bind_param drawbacks
Submitted: 2004-12-15 01:17 UTC Modified: 2011-01-01 23:52 UTC
From: glideraerobatics at hotmail dot com Assigned:
Status: Not a bug Package: MySQLi related
PHP Version: 5.0.2 OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: glideraerobatics at hotmail dot com
New email:
PHP Version: OS:

 

 [2004-12-15 01:17 UTC] glideraerobatics at hotmail dot com
Description:
------------
The function mysqli_stmt_bind_param() is a huge leap forward for PHP but still has a terrible drawback:

I use DAO (not the Micro$oft kind) classes that create their own SQL statements. These statements have varying numbers of fields and bind markers (the ? marks).

If one could pass an array of values to mysqli_stmt_bind_param(), then this problem could be solved, but it's not possible (yet).

Currently mysqli_stmt_bind_param() expects the programmer to just type in a list of variable names as parameters. To make things worse, you sometimes can't even use function calls as parameters because mysqli_stmt_bind_param() complains about non-referenced variables (or something).

Hopefully somebody bring PHP up to the level of other programming languages in this area.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-12-15 07:46 UTC] georg@php.net
We tried to keep mysqli simple and api conformant. 
 
Binding an array to mysql_stmt_bind_param (or bind_result) 
is pretty simple, so there is no need for providing a new 
function - you can do this with 3 lines in userland code: 
 
for ($i=0; $i < mysql_stmt_param_count($stmt); $i++) 
  $bindrow[] = &$row[$i]; 
call_user_func_array("mysqli_stmt_bind_result", $bindrow); 
 
 
 
 
 [2004-12-15 07:49 UTC] georg@php.net
last sample was incomplete: 
 
$bindrow[0] = $stmt; 
.... 
 [2011-01-01 23:52 UTC] jani@php.net
-Package: Feature/Change Request +Package: MySQLi related
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 06:01:35 2024 UTC