php-src/ext/mysqli/tests/047.phpt

213 lines
4.5 KiB
Plaintext
Raw Normal View History

2003-02-16 13:48:00 +00:00
--TEST--
mysqli_get_metadata
2004-12-04 08:50:33 +00:00
--SKIPIF--
2008-01-04 09:00:59 +00:00
<?php
require_once('skipif.inc');
2007-10-10 10:08:29 +00:00
require_once('skipifconnectfailure.inc');
?>
2003-02-16 13:48:00 +00:00
--FILE--
<?php
require_once("connect.inc");
2007-10-10 10:08:29 +00:00
2003-02-16 13:48:00 +00:00
/*** test mysqli_connect 127.0.0.1 ***/
$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket);
2003-02-16 13:48:00 +00:00
2007-10-10 10:08:29 +00:00
mysqli_select_db($link, $db);
2003-02-16 13:48:00 +00:00
mysqli_query($link, "DROP TABLE IF EXISTS test_affected");
mysqli_query($link, "CREATE TABLE test_affected (foo int, bar varchar(10) character set latin1) ENGINE=" . $engine);
2003-02-16 13:48:00 +00:00
mysqli_query($link, "INSERT INTO test_affected VALUES (1, 'Zak'),(2, 'Greant')");
$stmt = mysqli_prepare($link, "SELECT * FROM test_affected");
mysqli_execute($stmt);
$result = mysqli_get_metadata($stmt);
2003-02-16 13:48:00 +00:00
2006-07-11 23:45:28 +00:00
echo "\n=== fetch_fields ===\n";
var_dump(mysqli_fetch_fields($result));
echo "\n=== fetch_field_direct ===\n";
var_dump(mysqli_fetch_field_direct($result, 0));
var_dump(mysqli_fetch_field_direct($result, 1));
echo "\n=== fetch_field ===\n";
while ($field = mysqli_fetch_field($result)) {
var_dump($field);
}
2007-10-10 10:08:29 +00:00
2006-07-11 23:45:28 +00:00
print_r(mysqli_fetch_lengths($result));
2007-10-10 10:08:29 +00:00
2003-02-16 13:48:00 +00:00
mysqli_free_result($result);
2003-02-16 21:19:32 +00:00
2007-10-10 10:08:29 +00:00
mysqli_stmt_close($stmt);
mysqli_query($link, "DROP TABLE IF EXISTS test_affected");
2003-02-16 13:48:00 +00:00
mysqli_close($link);
2007-10-10 10:08:29 +00:00
print "done!";
2003-02-16 13:48:00 +00:00
?>
--CLEAN--
<?php
require_once("connect.inc");
if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
printf("[c001] [%d] %s\n", mysqli_connect_errno(), mysqli_connect_error());
if (!mysqli_query($link, "DROP TABLE IF EXISTS test_affected"))
printf("[c002] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
mysqli_close($link);
?>
2003-04-03 08:03:12 +00:00
--EXPECTF--
2006-07-11 23:45:28 +00:00
=== fetch_fields ===
2003-02-16 13:48:00 +00:00
array(2) {
[0]=>
object(stdClass)#5 (11) {
[%u|b%"name"]=>
%unicode|string%(3) "foo"
[%u|b%"orgname"]=>
%unicode|string%(3) "foo"
[%u|b%"table"]=>
%unicode|string%(13) "test_affected"
[%u|b%"orgtable"]=>
%unicode|string%(13) "test_affected"
[%u|b%"def"]=>
%unicode|string%(0) ""
[%u|b%"max_length"]=>
2003-02-16 13:48:00 +00:00
int(0)
[%u|b%"length"]=>
2008-01-04 09:00:59 +00:00
int(%d)
[%u|b%"charsetnr"]=>
2008-01-04 09:00:59 +00:00
int(%d)
[%u|b%"flags"]=>
2003-02-16 13:48:00 +00:00
int(32768)
[%u|b%"type"]=>
2003-02-16 13:48:00 +00:00
int(3)
[%u|b%"decimals"]=>
2003-02-16 13:48:00 +00:00
int(0)
}
[1]=>
object(stdClass)#6 (11) {
[%u|b%"name"]=>
%unicode|string%(3) "bar"
[%u|b%"orgname"]=>
%unicode|string%(3) "bar"
[%u|b%"table"]=>
%unicode|string%(13) "test_affected"
[%u|b%"orgtable"]=>
%unicode|string%(13) "test_affected"
[%u|b%"def"]=>
%unicode|string%(0) ""
[%u|b%"max_length"]=>
2003-02-16 13:48:00 +00:00
int(0)
[%u|b%"length"]=>
2008-01-04 09:00:59 +00:00
int(%d)
[%u|b%"charsetnr"]=>
2008-01-04 09:00:59 +00:00
int(%d)
[%u|b%"flags"]=>
2003-02-16 13:48:00 +00:00
int(0)
[%u|b%"type"]=>
2003-02-16 13:48:00 +00:00
int(253)
[%u|b%"decimals"]=>
2003-02-16 13:48:00 +00:00
int(0)
}
}
2006-07-11 23:45:28 +00:00
=== fetch_field_direct ===
object(stdClass)#6 (11) {
[%u|b%"name"]=>
%unicode|string%(3) "foo"
[%u|b%"orgname"]=>
%unicode|string%(3) "foo"
[%u|b%"table"]=>
%unicode|string%(13) "test_affected"
[%u|b%"orgtable"]=>
%unicode|string%(13) "test_affected"
[%u|b%"def"]=>
%unicode|string%(0) ""
[%u|b%"max_length"]=>
int(0)
[%u|b%"length"]=>
int(%d)
[%u|b%"charsetnr"]=>
int(%d)
[%u|b%"flags"]=>
2006-07-11 23:45:28 +00:00
int(32768)
[%u|b%"type"]=>
2006-07-11 23:45:28 +00:00
int(3)
[%u|b%"decimals"]=>
2006-07-11 23:45:28 +00:00
int(0)
}
object(stdClass)#6 (11) {
[%u|b%"name"]=>
%unicode|string%(3) "bar"
[%u|b%"orgname"]=>
%unicode|string%(3) "bar"
[%u|b%"table"]=>
%unicode|string%(13) "test_affected"
[%u|b%"orgtable"]=>
%unicode|string%(13) "test_affected"
[%u|b%"def"]=>
%unicode|string%(0) ""
[%u|b%"max_length"]=>
2006-07-11 23:45:28 +00:00
int(0)
[%u|b%"length"]=>
2008-01-04 09:00:59 +00:00
int(%d)
[%u|b%"charsetnr"]=>
2008-01-04 09:00:59 +00:00
int(%d)
[%u|b%"flags"]=>
2006-07-11 23:45:28 +00:00
int(0)
[%u|b%"type"]=>
2006-07-11 23:45:28 +00:00
int(253)
[%u|b%"decimals"]=>
2006-07-11 23:45:28 +00:00
int(0)
}
=== fetch_field ===
object(stdClass)#6 (11) {
[%u|b%"name"]=>
%unicode|string%(3) "foo"
[%u|b%"orgname"]=>
%unicode|string%(3) "foo"
[%u|b%"table"]=>
%unicode|string%(13) "test_affected"
[%u|b%"orgtable"]=>
%unicode|string%(13) "test_affected"
[%u|b%"def"]=>
%unicode|string%(0) ""
[%u|b%"max_length"]=>
int(0)
[%u|b%"length"]=>
int(%d)
[%u|b%"charsetnr"]=>
int(%d)
[%u|b%"flags"]=>
2007-10-10 10:08:29 +00:00
int(32768)
[%u|b%"type"]=>
2007-10-10 10:08:29 +00:00
int(3)
[%u|b%"decimals"]=>
2007-10-10 10:08:29 +00:00
int(0)
}
object(stdClass)#5 (11) {
[%u|b%"name"]=>
%unicode|string%(3) "bar"
[%u|b%"orgname"]=>
%unicode|string%(3) "bar"
[%u|b%"table"]=>
%unicode|string%(13) "test_affected"
[%u|b%"orgtable"]=>
%unicode|string%(13) "test_affected"
[%u|b%"def"]=>
%unicode|string%(0) ""
[%u|b%"max_length"]=>
2007-10-10 10:08:29 +00:00
int(0)
[%u|b%"length"]=>
2007-10-10 10:08:29 +00:00
int(%d)
[%u|b%"charsetnr"]=>
2007-10-10 10:08:29 +00:00
int(%d)
[%u|b%"flags"]=>
2007-10-10 10:08:29 +00:00
int(0)
[%u|b%"type"]=>
2007-10-10 10:08:29 +00:00
int(253)
[%u|b%"decimals"]=>
2007-10-10 10:08:29 +00:00
int(0)
}
done!