1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
--TEST--
mysqli_options()
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifemb.inc');
require_once('skipifconnectfailure.inc');
?>
<?php require_once('skipifemb.inc'); ?>
--FILE--
<?php
/* see mysqli.c for details */
require_once("connect.inc");
if (!($link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)))
printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
$host, $user, $db, $port, $socket);
/* TODO: test more options */
if (!mysqli_query($link, "DROP TABLE IF EXISTS test") ||
!mysqli_query($link, sprintf("CREATE TABLE test(id INT) ENGINE = %s\n", $engine)) ||
!mysqli_query($link, "INSERT INTO test(id) VALUES (1)"))
printf("[002] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
if (!$res = mysqli_query($link, "SELECT COUNT(id) AS _num_rows FROM test"))
printf("[003] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
$row = mysqli_fetch_assoc($res);
mysqli_free_result($res);
if ($row['_num_rows'] != 1)
printf("[003] Expecting 1 got %s\n", $row['_num_rows']);
mysqli_close($link);
$link = mysqli_init();
if (true !== mysqli_options($link, MYSQLI_INIT_COMMAND, "INSERT INTO test(id) VALUES (2)"))
printf("[004] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
if (!my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket))
printf("[005] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
$host, $user, $db, $port, $socket);
if (!$res = mysqli_query($link, "SELECT COUNT(id) AS _num_rows FROM test"))
printf("[006] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
$row = mysqli_fetch_assoc($res);
mysqli_free_result($res);
if ($row['_num_rows'] != 2)
printf("[007] Expecting 1 got %s\n", $row['_num_rows']);
mysqli_close($link);
$link = mysqli_init();
if (true !== mysqli_options($link, MYSQLI_INIT_COMMAND, "INSERT INTO test(i_do_no_exist) VALUES (2)"))
printf("[008] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
mysqli_close($link);
$link = mysqli_init();
if (true !== mysqli_options($link, MYSQLI_INIT_COMMAND, "INSERT INTO test(i_do_no_exist) VALUES (2)"))
printf("[009] [%d] %s\n", mysqli_errno($link), mysqli_error($link));
if (!my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket))
printf("[010] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
$host, $user, $db, $port, $socket);
print "done!";
?>
--CLEAN--
<?php
require_once("clean_table.inc");
?>
--EXPECTF--
Warning: mysqli_real_connect(): (%s/%d): %s in %s on line %d
[010] Cannot connect to the server using %s
done!
|