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

356 lines
5.9 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--
<?php
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
?>
2003-02-16 13:48:00 +00:00
--FILE--
<?php
include "connect.inc";
2003-02-16 13:48:00 +00:00
/*** test mysqli_connect 127.0.0.1 ***/
$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket);
2003-02-16 13:48:00 +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)");
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
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);
}
print_r(mysqli_fetch_lengths($result));
2003-02-16 13:48:00 +00:00
mysqli_free_result($result);
2003-02-16 21:19:32 +00:00
mysqli_stmt_close($stmt);
2003-02-16 13:48:00 +00:00
mysqli_close($link);
print "done!";
2003-02-16 13:48:00 +00:00
?>
2003-04-03 08:03:12 +00:00
--EXPECTF--
=== fetch_fields ===
2003-02-16 13:48:00 +00:00
array(2) {
[0]=>
object(stdClass)#5 (11) {
2003-02-16 13:48:00 +00:00
["name"]=>
string(3) "foo"
["orgname"]=>
string(3) "foo"
["table"]=>
string(13) "test_affected"
["orgtable"]=>
string(13) "test_affected"
["def"]=>
string(0) ""
["max_length"]=>
int(0)
["length"]=>
int(11)
["charsetnr"]=>
int(63)
2003-02-16 13:48:00 +00:00
["flags"]=>
int(32768)
["type"]=>
int(3)
["decimals"]=>
int(0)
}
[1]=>
object(stdClass)#6 (11) {
2003-02-16 13:48:00 +00:00
["name"]=>
string(3) "bar"
["orgname"]=>
string(3) "bar"
["table"]=>
string(13) "test_affected"
["orgtable"]=>
string(13) "test_affected"
["def"]=>
string(0) ""
["max_length"]=>
int(0)
["length"]=>
int(10)
["charsetnr"]=>
int(8)
2003-02-16 13:48:00 +00:00
["flags"]=>
int(0)
["type"]=>
int(253)
["decimals"]=>
int(0)
}
}
=== fetch_field_direct ===
object(stdClass)#6 (11) {
["name"]=>
string(3) "foo"
["orgname"]=>
string(3) "foo"
["table"]=>
string(13) "test_affected"
["orgtable"]=>
string(13) "test_affected"
["def"]=>
string(0) ""
["max_length"]=>
int(0)
["length"]=>
int(11)
["charsetnr"]=>
int(63)
["flags"]=>
int(32768)
["type"]=>
int(3)
["decimals"]=>
int(0)
}
object(stdClass)#6 (11) {
["name"]=>
string(3) "bar"
["orgname"]=>
string(3) "bar"
["table"]=>
string(13) "test_affected"
["orgtable"]=>
string(13) "test_affected"
["def"]=>
string(0) ""
["max_length"]=>
int(0)
["length"]=>
int(10)
["charsetnr"]=>
int(8)
["flags"]=>
int(0)
["type"]=>
int(253)
["decimals"]=>
int(0)
}
=== fetch_field ===
object(stdClass)#6 (11) {
["name"]=>
string(3) "foo"
["orgname"]=>
string(3) "foo"
["table"]=>
string(13) "test_affected"
["orgtable"]=>
string(13) "test_affected"
["def"]=>
string(0) ""
["max_length"]=>
int(0)
["length"]=>
int(11)
["charsetnr"]=>
int(63)
["flags"]=>
int(32768)
["type"]=>
int(3)
["decimals"]=>
int(0)
}
object(stdClass)#5 (11) {
["name"]=>
string(3) "bar"
["orgname"]=>
string(3) "bar"
["table"]=>
string(13) "test_affected"
["orgtable"]=>
string(13) "test_affected"
["def"]=>
string(0) ""
["max_length"]=>
int(0)
["length"]=>
int(10)
["charsetnr"]=>
int(8)
["flags"]=>
int(0)
["type"]=>
int(253)
["decimals"]=>
int(0)
}
done!
--UEXPECTF--
=== fetch_fields ===
array(2) {
[0]=>
object(stdClass)#5 (11) {
[u"name"]=>
unicode(3) "foo"
[u"orgname"]=>
unicode(3) "foo"
[u"table"]=>
unicode(13) "test_affected"
[u"orgtable"]=>
unicode(13) "test_affected"
[u"def"]=>
unicode(0) ""
[u"max_length"]=>
int(0)
[u"length"]=>
int(11)
[u"charsetnr"]=>
int(63)
[u"flags"]=>
int(32768)
[u"type"]=>
int(3)
[u"decimals"]=>
int(0)
}
[1]=>
object(stdClass)#6 (11) {
[u"name"]=>
unicode(3) "bar"
[u"orgname"]=>
unicode(3) "bar"
[u"table"]=>
unicode(13) "test_affected"
[u"orgtable"]=>
unicode(13) "test_affected"
[u"def"]=>
unicode(0) ""
[u"max_length"]=>
int(0)
[u"length"]=>
int(%d)
[u"charsetnr"]=>
int(%d)
[u"flags"]=>
int(0)
[u"type"]=>
int(253)
[u"decimals"]=>
int(0)
}
}
=== fetch_field_direct ===
object(stdClass)#6 (11) {
[u"name"]=>
unicode(3) "foo"
[u"orgname"]=>
unicode(3) "foo"
[u"table"]=>
unicode(13) "test_affected"
[u"orgtable"]=>
unicode(13) "test_affected"
[u"def"]=>
unicode(0) ""
[u"max_length"]=>
int(0)
[u"length"]=>
int(%d)
[u"charsetnr"]=>
int(%d)
[u"flags"]=>
int(32768)
[u"type"]=>
int(3)
[u"decimals"]=>
int(0)
}
object(stdClass)#6 (11) {
[u"name"]=>
unicode(3) "bar"
[u"orgname"]=>
unicode(3) "bar"
[u"table"]=>
unicode(13) "test_affected"
[u"orgtable"]=>
unicode(13) "test_affected"
[u"def"]=>
unicode(0) ""
[u"max_length"]=>
int(0)
[u"length"]=>
int(%d)
[u"charsetnr"]=>
int(%d)
[u"flags"]=>
int(0)
[u"type"]=>
int(253)
[u"decimals"]=>
int(0)
}
=== fetch_field ===
object(stdClass)#6 (11) {
[u"name"]=>
unicode(3) "foo"
[u"orgname"]=>
unicode(3) "foo"
[u"table"]=>
unicode(13) "test_affected"
[u"orgtable"]=>
unicode(13) "test_affected"
[u"def"]=>
unicode(0) ""
[u"max_length"]=>
int(0)
[u"length"]=>
int(%d)
[u"charsetnr"]=>
int(%d)
[u"flags"]=>
int(32768)
[u"type"]=>
int(3)
[u"decimals"]=>
int(0)
}
object(stdClass)#5 (11) {
[u"name"]=>
unicode(3) "bar"
[u"orgname"]=>
unicode(3) "bar"
[u"table"]=>
unicode(13) "test_affected"
[u"orgtable"]=>
unicode(13) "test_affected"
[u"def"]=>
unicode(0) ""
[u"max_length"]=>
int(0)
[u"length"]=>
int(%d)
[u"charsetnr"]=>
int(%d)
[u"flags"]=>
int(0)
[u"type"]=>
int(253)
[u"decimals"]=>
int(0)
}
done!