ID: 24350
Updated by: [EMAIL PROTECTED]
Reported By: webmaster at s0nix dot de
-Status: Open
+Status: Assigned
Bug Type: Feature/Change Request
PHP Version: 5CVS-2003-06-26 (dev)
-Assigned To:
+Assigned To: georg
New Comment:
Assigned, but be aware, this will take some time.
1st) LinuxTag
2nd) MySQL License exceptions :)
3rd) fixing other bugs in ext/mysqli
4th) vacation
We will also have a db-maintainer meeting on LinuxTag, where we will
discuss about it (not only for mysqli...)
Regards
Georg
Previous Comments:
------------------------------------------------------------------------
[2003-06-26 15:20:44] webmaster at s0nix dot de
Description:
------------
The new mysqli-extension should use the object-overloading features of
PHP5 for a easier and cleaner access.
Reproduce code:
---------------
<?php
include "connect.inc";
/*** test mysqli_connect 127.0.0.1 ***/
$mysql = mysqli_connect("localhost", $user, $passwd);
$mysql->select_db("test");
$result = $mysql->query("SELECT CURRENT_USER() AS user");
while ($result->next())
{
echo $result->user;
}
$result->close();
$mysql->close();
?>
Expected result:
----------------
[EMAIL PROTECTED]
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=24350&edit=1