Lines Matching refs:Connection
24 if (!mysqli_query($link1, 'SET @pcondisabled = "Connection 1"'))
37 printf("Connection 1 - SELECT @pcondisabled -> '%s'\n", $row['_test']);
44 printf("Connection 2 (no reuse) - SELECT @pcondisabled -> '%s'\n", $row['_test']);
46 printf("Connection 2 (no reuse) - Thread ID -> '%s'\n", $thread_id);
49 if (!mysqli_query($link2, 'SET @pcondisabled = "Connection 2"'))
57 printf("Connection 2 - SELECT @pcondisabled -> '%s'\n", $row['_test']);
72 printf("Connection 2 (reuse) - SELECT @pcondisabled -> '%s'\n", $row['_test']);
74 printf("Connection 2 (reuse) - Thread ID -> '%s'\n", $thread_id_reuse);
85 Connection 1 - SELECT @pcondisabled -> 'Connection 1'
86 Connection 2 (no reuse) - SELECT @pcondisabled -> ''
87 Connection 2 (no reuse) - Thread ID -> '%d'
88 Connection 2 - SELECT @pcondisabled -> 'Connection 2'
89 Connection 2 (reuse) - SELECT @pcondisabled -> 'Connection 2'
90 Connection 2 (reuse) - Thread ID -> '%d'