]> granicus.if.org Git - php/commitdiff
fixed minor problems (thx to tony)
authorGeorg Richter <georg@php.net>
Fri, 24 Mar 2006 10:58:52 +0000 (10:58 +0000)
committerGeorg Richter <georg@php.net>
Fri, 24 Mar 2006 10:58:52 +0000 (10:58 +0000)
ext/mysqli/tests/017.phpt
ext/mysqli/tests/049.phpt
ext/mysqli/tests/bug34810.phpt

index 54d11ef7195c2252246664f17f2c005400f023bc..866a118a86752653a8c9f766fa0fd0f22059a81c 100644 (file)
@@ -12,15 +12,13 @@ mysqli fetch functions
 
        mysqli_select_db($link, "test");
 
-       $stmt = mysqli_prepare($link, "SELECT current_user(), database(), 'foo'");
+       $stmt = mysqli_prepare($link, "SELECT md5('bar'), database(), 'foo'");
        mysqli_bind_result($stmt, $c0, $c1, $c2); 
        mysqli_execute($stmt);
 
        mysqli_fetch($stmt);
        mysqli_stmt_close($stmt);
 
-       $c0 = ($c0 == $user . "@" . $host) ? 1 : 0;
-
        $test = array($c0, $c1, $c2);
 
        var_dump($test);
@@ -29,7 +27,7 @@ mysqli fetch functions
 --EXPECT--
 array(3) {
   [0]=>
-  int(1)
+  string(32) "37b51d194a7513e45b56f6524f2d51f2"
   [1]=>
   string(4) "test"
   [2]=>
index 8d16c3d4c78294e8e583449c3ab2e7f032bec019..4bb5bfef45c0d8885c84a2a899da6d3d00b1ffee 100644 (file)
@@ -11,14 +11,16 @@ mysql_fetch_row (OO-Style)
        $mysql = mysqli_connect($host, $user, $passwd);
 
        $mysql->select_db("test");              
-       $result = $mysql->query("SELECT CURRENT_USER()");
+       $result = $mysql->query("SELECT DATABASE()");
        $row = $result->fetch_row();
        $result->close();
 
-       $ok = ($row[0] == $user . "@" . $host); 
-       var_dump($ok);
+       var_dump($row);
 
        $mysql->close();
 ?>
 --EXPECT--
-bool(true)
+array(1) {
+  [0]=>
+  string(4) "test"
+}
index a949b52c6456507d8060a7a26d7e00e05eb1ca5c..0b8a799a840ae36c9038ef9861a806a77318159b 100644 (file)
@@ -9,10 +9,10 @@ class DbConnection {
        public function connect() {
                include "connect.inc";
 
-               $link = mysqli::connect($host, $user, $passwd);
+               $link = mysqli_connect($host, $user, $passwd);
                var_dump($link); 
                
-               $link = mysqli::init();
+               $link = mysqli_init();
                var_dump($link);
                
                $mysql = new mysqli($host, $user, $passwd, "test");