summaryrefslogtreecommitdiff
path: root/ext/mysql/tests/mysql_list_fields.phpt
blob: 87b3cf6b898a6e36639afc2545e897e17d391dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--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!