php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #63798 Add dbname to mysqli_prop
Submitted: 2012-12-18 21:07 UTC Modified: 2017-04-06 10:03 UTC
From: thbley at gmail dot com Assigned:
Status: Wont fix Package: MySQLi related
PHP Version: 5.5.0alpha1 OS: win7 x64
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:
18 - 1 = ?
Subscribe to this entry?

 
 [2012-12-18 21:07 UTC] thbley at gmail dot com
Description:
------------
The properties of the Mysqli object already contain server-info, server-version, errors, etc., but not the current (selected) database.
It would be great if dbname could be added to mysqli properties.
With the property it gets easier to check if the right database was selected or if none was selected.

Test script:
---------------
PHP code looks like this:

class mysqli_db extends mysqli {
  public function __construct($host=null, $user=null, $pw=null, $db=null) {
    call_user_func_array("parent::__construct", func_get_args());
    $this->db = $db;
  }
  // same for real_connect() ...

  public function select_db($db) {
    parent::select_db($db);
    $this->db = $db;
  }
}

$db = new mysqli_db('127.0.0.1', 'root', '', 'test');
echo $db->db; // test

$db->select_db('test2');
echo $db->db; // test2


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-04-06 10:03 UTC] johannes@php.net
-Status: Open +Status: Wont fix
 [2017-04-06 10:03 UTC] johannes@php.net
We can't do this as we don't necessarily have the information. If a script for instance does query("USE other_db") mysqli won't notice.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 08:01:28 2024 UTC