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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
--TEST--
Persistent connections - limits (-1, unlimited)
--EXTENSIONS--
mysqli
--SKIPIF--
<?php
require_once 'skipifconnectfailure.inc';
?>
--INI--
mysqli.allow_persistent=1
mysqli.max_persistent=-1
mysqli.max_links=-1
--FILE--
<?php
require_once 'table.inc';
if (!$res = mysqli_query($link, "SELECT 'works..' as _desc"))
printf("[001] Cannot run query, [%d] %s\n",
mysqli_errno($link), mysqli_error($link));
$row = mysqli_fetch_assoc($res);
mysqli_free_result($res);
printf("Regular connection 1 - '%s'\n", $row['_desc']);
if (!$link2 = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
printf("[002] Cannot open second regular connection, [%d] %s\n",
mysqli_connect_errno(), mysqli_connect_error());
if (!$res = mysqli_query($link2, "SELECT 'works...' as _desc"))
printf("[003] Cannot run query, [%d] %s\n",
mysqli_errno($link2), mysqli_error($link2));
$row = mysqli_fetch_assoc($res);
mysqli_free_result($res);
printf("Regular connection 2 - '%s'\n", $row['_desc']);
$host = 'p:' . $host;
if (!$plink = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
printf("[004] Cannot create persistent connection using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s, [%d] %s\n",
$host, $user, $db, $port, $socket,
mysqli_connect_errno(), mysqli_connect_error());
if (!$res = mysqli_query($plink, "SELECT 'works...' as _desc"))
printf("[005] Cannot run query, [%d] %s\n",
mysqli_errno($plink), mysqli_error($plink));
$row = mysqli_fetch_assoc($res);
mysqli_free_result($res);
printf("Persistent connection 1 - '%s'\n", $row['_desc']);
if (!$plink2 = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket))
printf("[006] Cannot create persistent connection using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s, [%d] %s\n",
$host, $user, $db, $port, $socket,
mysqli_connect_errno(), mysqli_connect_error());
if (!$res = mysqli_query($plink2, "SELECT 'works...' as _desc"))
printf("[007] Cannot run query, [%d] %s\n",
mysqli_errno($plink2), mysqli_error($plink2));
$row = mysqli_fetch_assoc($res);
mysqli_free_result($res);
printf("Persistent connection 2 - '%s'\n", $row['_desc']);
$plink3 = mysqli_init();
if (!my_mysqli_real_connect($plink3, $host, $user, $passwd, $db, $port, $socket))
printf("[008] Cannot create persistent connection using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s, [%d] %s\n",
$host, $user, $db, $port, $socket,
mysqli_connect_errno(), mysqli_connect_error());
if (!$res = mysqli_query($plink3, "SELECT 'works...' as _desc"))
printf("[009] Cannot run query, [%d] %s\n",
mysqli_errno($plink2), mysqli_error($plink2));
$row = mysqli_fetch_assoc($res);
mysqli_free_result($res);
printf("Persistent connection 3 - '%s'\n", $row['_desc']);
mysqli_close($link);
mysqli_close($link2);
mysqli_close($plink);
mysqli_close($plink2);
mysqli_close($plink3);
print "done!";
?>
--CLEAN--
<?php
require_once 'clean_table.inc';
?>
--EXPECT--
Regular connection 1 - 'works..'
Regular connection 2 - 'works...'
Persistent connection 1 - 'works...'
Persistent connection 2 - 'works...'
Persistent connection 3 - 'works...'
done!
|