1--TEST--
2mysql.trace_mode=1
3--SKIPIF--
4<?php
5require_once('skipif.inc');
6require_once('skipifconnectfailure.inc');
7?>
8--INI--
9mysql.trace_mode=1
10error_reporting=E_ALL | E_NOTICE | E_STRICT
11--FILE--
12<?php
13require_once('table.inc');
14
15$res1 = mysql_query('SELECT id FROM test', $link);
16
17if (!$res2 = @mysql_db_query($db, 'SELECT id FROM test', $link))
18	printf("[001] [%d] %s\n", mysql_errno($link), mysql_error($link));
19mysql_free_result($res2);
20print @mysql_escape_string("I don't mind character sets, do I?\n");
21
22$res3 = mysql_query('BOGUS_SQL', $link);
23mysql_close($link);
24
25print "done!\n";
26?>
27--CLEAN--
28<?php
29require_once("clean_table.inc");
30?>
31--EXPECTF--
32Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
33I don\'t mind character sets, do I?\n
34Warning: 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
35done!
36
37Warning: 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
38