summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/058.phpt
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2004-01-25 12:03:25 +0000
committerSVN Migration <svn@php.net>2004-01-25 12:03:25 +0000
commit22476b36ce621bdd115493bab84cbe706e422a7c (patch)
tree1124d1c5af68860a78c2252bb0dac63c9f18156e /ext/mysqli/tests/058.phpt
parenteb7aca4ea896b09cb9afc2466a46f4720acc4a4e (diff)
downloadphp-git-php_ibase_before_split.tar.gz
This commit was manufactured by cvs2svn to create tagphp_ibase_before_split
'php_ibase_before_split'.
Diffstat (limited to 'ext/mysqli/tests/058.phpt')
-rw-r--r--ext/mysqli/tests/058.phpt55
1 files changed, 0 insertions, 55 deletions
diff --git a/ext/mysqli/tests/058.phpt b/ext/mysqli/tests/058.phpt
deleted file mode 100644
index 11b9475905..0000000000
--- a/ext/mysqli/tests/058.phpt
+++ /dev/null
@@ -1,55 +0,0 @@
---TEST--
-multiple binds
---FILE--
-<?php
- include "connect.inc";
-
- /*** test mysqli_connect 127.0.0.1 ***/
- $link = mysqli_connect("localhost", $user, $passwd);
-
- mysqli_select_db($link, "test");
-
- mysqli_query($link,"DROP TABLE IF EXISTS mbind");
- mysqli_query($link,"CREATE TABLE mbind (a int, b varchar(10))");
-
- $stmt = mysqli_prepare($link, "INSERT INTO mbind VALUES (?,?)");
-
- mysqli_bind_param($stmt, array(MYSQLI_BIND_INT, MYSQLI_BIND_STRING), $a, $b);
-
- $a = 1;
- $b = "foo";
-
- mysqli_execute($stmt);
-
- mysqli_bind_param($stmt, array(MYSQLI_BIND_INT, MYSQLI_BIND_STRING), $c, $d);
-
- $c = 2;
- $d = "bar";
-
- mysqli_execute($stmt);
- mysqli_stmt_close($stmt);
-
- $stmt = mysqli_prepare($link, "SELECT * FROM mbind");
- mysqli_execute($stmt);
-
- mysqli_bind_result($stmt, $e, $f);
- mysqli_fetch($stmt);
-
- mysqli_bind_result($stmt, $g, $h);
- mysqli_fetch($stmt);
-
- var_dump((array($e,$f,$g,$h)));
-
- mysqli_close($link);
-?>
---EXPECT--
-array(4) {
- [0]=>
- int(1)
- [1]=>
- string(3) "foo"
- [2]=>
- int(2)
- [3]=>
- string(3) "bar"
-}