georg Thu Sep 25 07:19:58 2003 EDT Modified files: /php-src/ext/mysqli/tests 047.phpt 057.phpt Log: mysqli_prepare_result -> mysqli_get_metadata Index: php-src/ext/mysqli/tests/047.phpt diff -u php-src/ext/mysqli/tests/047.phpt:1.3 php-src/ext/mysqli/tests/047.phpt:1.4 --- php-src/ext/mysqli/tests/047.phpt:1.3 Thu Apr 3 03:03:12 2003 +++ php-src/ext/mysqli/tests/047.phpt Thu Sep 25 07:19:58 2003 @@ -1,5 +1,5 @@ --TEST-- -mysqli_prepare_result +mysqli_get_metadata --FILE-- <?php include "connect.inc"; @@ -16,7 +16,7 @@ $stmt = mysqli_prepare($link, "SELECT * FROM test_affected"); mysqli_execute($stmt); - $result = mysqli_prepare_result($stmt); + $result = mysqli_get_metadata($stmt); $fields = mysqli_fetch_fields($result); mysqli_free_result($result); Index: php-src/ext/mysqli/tests/057.phpt diff -u php-src/ext/mysqli/tests/057.phpt:1.1 php-src/ext/mysqli/tests/057.phpt:1.2 --- php-src/ext/mysqli/tests/057.phpt:1.1 Tue Feb 18 03:41:16 2003 +++ php-src/ext/mysqli/tests/057.phpt Thu Sep 25 07:19:58 2003 @@ -1,5 +1,5 @@ --TEST-- -mysqli_prepare_result +mysqli_get_metadata --FILE-- <?php include "connect.inc"; @@ -26,7 +26,7 @@ $stmt = mysqli_prepare($link, "SELECT * FROM test_store_result"); mysqli_execute($stmt); - $result1 = mysqli_prepare_result($stmt); + $result1 = mysqli_get_metadata($stmt); mysqli_stmt_store_result($stmt); printf ("Rows: %d\n", mysqli_stmt_affected_rows($stmt));
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php