php-src/ext/mysql/tests/mysql_list_fields.phpt
Ulf Wendel db9cdc1b66 And the last set of new tests for ext/mysql. "new" does not really mean new.
We've checked them into HEAD/PHP6 before already.
2007-10-10 09:56:48 +00:00

34 lines
746 B
PHP

--TEST--
mysql_list_fields()
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
include_once "connect.inc";
$tmp = NULL;
$link = NULL;
// This will implicitly try to connect, and we don't want it
//if (false !== ($tmp = mysql_list_fields($link, $link)))
// printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
require('table.inc');
if (!$res = mysql_list_fields($db, 'test', $link))
printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
if (!($num = mysql_num_fields($res)))
printf("[004] Empty field list? [%d] %s\n", mysql_errno($link), mysql_error($link));
mysql_free_result($res);
mysql_close($link);
print "done!";
?>
--EXPECTF--
done!