mysql_select_db.phpt 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. --TEST--
  2. mysql_select_db()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. include_once "connect.inc";
  11. $tmp = NULL;
  12. $link = NULL;
  13. if (false !== ($tmp = @mysql_select_db($link)))
  14. printf("[001] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  15. if (!$link = my_mysql_connect($host, $user, $passwd, $db, $port, $socket))
  16. printf("[002] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
  17. $host, $user, $db, $port, $socket);
  18. if (!is_null($tmp = @mysql_select_db($db, $link, "foo")))
  19. printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  20. /* does not make too much sense, unless we have access to at least one more database than $db */
  21. if (!mysql_select_db($db, $link))
  22. printf("[004] Cannot select DB %s, [%d] %s\n", $db, mysql_errno($link), mysql_error($link));
  23. if (!$res = mysql_query("SELECT DATABASE() AS dbname", $link))
  24. printf("[005] [%d] %s\n", mysql_errno($link), mysql_error($link));
  25. if (!$row = mysql_fetch_assoc($res))
  26. printf("[006] [%d] %s\n", mysql_errno($link), mysql_error($link));
  27. if ($row['dbname'] !== (string)$db)
  28. printf("[007] Expecting database '%s', found '%s'\n", $db, $row['dbname']);
  29. var_dump($row['dbname']);
  30. mysql_free_result($res);
  31. if (mysql_select_db('mysql', $link)) {
  32. // Yippie, a second database to play with - that's great because mysql_select_db
  33. // ($db) was done by mysql__connect() already and the previous test
  34. // was quite useless
  35. if (!$res = mysql_query("SELECT DATABASE() AS dbname", $link))
  36. printf("[008] [%d] %s\n", mysql_errno($link), mysql_error($link));
  37. if (!$row = mysql_fetch_assoc($res))
  38. printf("[009] [%d] %s\n", mysql_errno($link), mysql_error($link));
  39. if (strtolower($row['dbname']) !== 'mysql')
  40. printf("[010] Expecting database 'mysql', found '%s'\n", $row['dbname']);
  41. mysql_free_result($res);
  42. }
  43. var_dump(mysql_select_db('I can not imagine that this database exists', $link));
  44. mysql_close($link);
  45. if (false !== ($tmp = mysql_select_db($db, $link)))
  46. printf("[012] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  47. print "done!\n";
  48. ?>
  49. --EXPECTF--
  50. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  51. %unicode|string%(%d) "%s"
  52. bool(false)
  53. Warning: mysql_select_db(): %d is not a valid MySQL-Link resource in %s on line %d
  54. done!