mysql_trace_mode.phpt 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --TEST--
  2. mysql.trace_mode=1
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --INI--
  9. mysql.trace_mode=1
  10. error_reporting=E_ALL | E_NOTICE | E_STRICT
  11. --FILE--
  12. <?php
  13. require_once('table.inc');
  14. $res1 = mysql_query('SELECT id FROM test', $link);
  15. if (!$res2 = @mysql_db_query($db, 'SELECT id FROM test', $link))
  16. printf("[001] [%d] %s\n", mysql_errno($link), mysql_error($link));
  17. mysql_free_result($res2);
  18. print @mysql_escape_string("I don't mind character sets, do I?\n");
  19. $res3 = mysql_query('BOGUS_SQL', $link);
  20. mysql_close($link);
  21. print "done!\n";
  22. ?>
  23. --CLEAN--
  24. <?php
  25. require_once("clean_table.inc");
  26. ?>
  27. --EXPECTF--
  28. 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
  29. I don\'t mind character sets, do I?\n
  30. Warning: mysql_query(): You have an error in your SQL syntax; check the manual that corresponds to your %s server version for the right syntax to use near 'BOGUS_SQL' at line 1 in %s on line %d
  31. done!
  32. Warning: Unknown: 1 result set(s) not freed. Use mysql_free_result to free result sets which were requested using mysql_query() in %s on line %d