]> granicus.if.org Git - php/commitdiff
test for bind + sql_mode=PIPES_AS_CONCAT
authorGeorg Richter <georg@php.net>
Tue, 15 Jul 2003 13:13:59 +0000 (13:13 +0000)
committerGeorg Richter <georg@php.net>
Tue, 15 Jul 2003 13:13:59 +0000 (13:13 +0000)
ext/mysqli/tests/059.phpt [new file with mode: 0644]

diff --git a/ext/mysqli/tests/059.phpt b/ext/mysqli/tests/059.phpt
new file mode 100644 (file)
index 0000000..a7bb3ad
--- /dev/null
@@ -0,0 +1,39 @@
+--TEST--
+sqlmode + bind
+--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, "SET SQL_MODE='PIPES_AS_CONCAT'");
+
+       mysqli_query($link,"DROP TABLE IF EXISTS mbind");
+       mysqli_query($link,"CREATE TABLE mbind (b varchar(25))");
+
+       $stmt = mysqli_prepare($link, "INSERT INTO mbind VALUES (?||?)");
+       
+       mysqli_bind_param($stmt, array(MYSQLI_BIND_STRING, MYSQLI_BIND_STRING), $a, $b);
+
+       $a = "foo";
+       $b = "bar";
+
+       mysqli_execute($stmt);
+
+       mysqli_stmt_close($stmt);
+
+       $stmt = mysqli_prepare($link, "SELECT * FROM mbind");
+       mysqli_execute($stmt);
+
+       mysqli_bind_result($stmt, $e);
+       mysqli_fetch($stmt);
+
+       var_dump($e);
+
+       mysqli_close($link);
+?>
+--EXPECT--
+string(6) "foobar"