georg Fri Feb 14 14:49:35 2003 EDT
Added files:
/php4/ext/mysqli/tests 045.phpt
Log:
test for bind_result with show
Index: php4/ext/mysqli/tests/045.phpt
+++ php4/ext/mysqli/tests/045.phpt
--TEST--
mysqli_bind_result (SHOW)
--FILE--
<?php
include "connect.inc";
/*** test mysqli_connect 127.0.0.1 ***/
$link = mysqli_connect("localhost", $user, $passwd);
$stmt = mysqli_prepare($link, "SHOW VARIABLES LIKE 'port'");
mysqli_execute($stmt);
mysqli_bind_result($stmt, &$c1, &$c2);
mysqli_fetch($stmt);
mysqli_stmt_close($stmt);
$test = array ($c1,$c2);
var_dump($test);
mysqli_close($link);
?>
--EXPECT--
array(2) {
[0]=>
string(4) "port"
[1]=>
string(4) "3306"
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php