Lines Matching refs:stmt
21 if (!($stmt = $link->prepare("CALL p123"))) {
22 printf("[003] [%d] %s\n", $stmt->error, $stmt->errno);
25 if (!$stmt->execute()) {
26 printf("[005] [%d] %s\n", $stmt->error, $stmt->errno);
31 if (!$stmt->bind_result($c_id, $c_label)) {
32 printf("[004] [%d] %s\n", $stmt->error, $stmt->errno);
36 if (!$stmt->fetch()) {
37 printf("[006] [%d] %s\n", $stmt->error, $stmt->errno);
42 if ($stmt->fetch()) {
47 if ($stmt->fetch()) {
51 if (!$stmt->more_results()) {
54 var_dump("[009] next_result:", $stmt->next_result());
57 if (!$stmt->bind_result($c_id, $c_label)) {
58 printf("[010] [%d] %s\n", $stmt->error, $stmt->errno);
62 if (!$stmt->fetch()) {
63 printf("[011] [%d] %s\n", $stmt->error, $stmt->errno);
68 if ($stmt->fetch()) {
72 if (!$stmt->more_results()) {
75 var_dump("[013] next_result:", $stmt->next_result());
78 if ($stmt->more_results()) {
84 $stmt->close();