/PHP-8.1/ext/mysqli/tests/ |
H A D | mysqli_affected_rows_oo.phpt | 2 mysqli->affected_rows 15 $mysqli->affected_rows; 25 if (0 !== ($tmp = $mysqli->affected_rows)) 37 if (1 !== ($tmp = $mysqli->affected_rows)) 42 if (-1 !== ($tmp = $mysqli->affected_rows)) 48 if (2 !== ($tmp = $mysqli->affected_rows)) 54 if (2 !== ($tmp = $mysqli->affected_rows)) 61 if (1 !== ($tmp = $mysqli->affected_rows)) 67 if (4 !== ($tmp = $mysqli->affected_rows)) 73 if (2 !== ($tmp = $mysqli->affected_rows)) [all …]
|
H A D | mysqli_class_mysqli_stmt_interface.phpt | 91 $stmt->affected_rows; 100 assert(mysqli_stmt_affected_rows($stmt) === $stmt->affected_rows); 101 printf("stmt->affected_rows = '%s'\n", $stmt->affected_rows); 145 affected_rows 161 stmt->affected_rows = '1'
|
H A D | 057.phpt | 39 if ($stmt->affected_rows !== 0) 40 printf("[001] Expecting 0, got %d\n", $stmt->affected_rows); 80 ["affected_rows"]=>
|
H A D | mysqli_class_mysqli_interface.phpt | 97 "affected_rows" => true, 159 assert(mysqli_affected_rows($link) === $mysqli->affected_rows); 160 printf("mysqli->affected_rows = '%s'/%s ('%s'/%s)\n", 161 $mysqli->affected_rows, gettype($mysqli->affected_rows), 277 mysqli->affected_rows = '%s'/integer ('%s'/integer)
|
H A D | bug34810.phpt | 65 ["affected_rows"]=>
|
H A D | fake_server.inc | 177 $packet->affected_rows = "00"; 248 $qr1->affected_rows = "00"; 249 $qr1->affected_rows = "00"; 406 $pr4->affected_rows = '00'; 501 $pr5->affected_rows = '00';
|
H A D | mysqli_kill.phpt | 87 ["affected_rows"]=>
|
H A D | mysqli_affected_rows.phpt | 33 // ignore INSERT error, NOTE: command line returns 0, affected_rows returns -1 as documented
|
H A D | mysqli_class_mysqli_properties_no_conn.phpt | 44 $mysqli->affected_rows;
|
/PHP-8.1/ext/mysqlnd/ |
H A D | mysqlnd_connection.h | 36 #define UPSERT_STATUS_GET_AFFECTED_ROWS(status) (status)->affected_rows 37 #define UPSERT_STATUS_SET_AFFECTED_ROWS(status, rows) (status)->affected_rows = (rows)
|
H A D | mysqlnd_wireprotocol.h | 104 uint64_t affected_rows; member 134 uint64_t affected_rows; member 185 uint64_t affected_rows; member
|
H A D | mysqlnd_wireprotocol.c | 731 packet->affected_rows = php_mysqlnd_net_field_length_ll(&p); in php_mysqlnd_auth_response_read() 762 packet->affected_rows, packet->last_insert_id, packet->server_status, in php_mysqlnd_auth_response_read() 878 packet->affected_rows = php_mysqlnd_net_field_length_ll(&p); in php_mysqlnd_ok_read() 902 packet->affected_rows, packet->last_insert_id, packet->server_status, in php_mysqlnd_ok_read() 1123 packet->affected_rows = php_mysqlnd_net_field_length_ll(&p); in php_mysqlnd_rset_header_read() 1155 packet->affected_rows, packet->last_insert_id, in php_mysqlnd_rset_header_read() 2569 UPSERT_STATUS_SET_AFFECTED_ROWS(upsert_status, ok_response.affected_rows); in MYSQLND_METHOD()
|
H A D | mysqlnd_connection.c | 49 upsert_status->affected_rows = 0; in MYSQLND_METHOD() 59 upsert_status->affected_rows = (uint64_t) ~0; in MYSQLND_METHOD() 1186 MYSQLND_METHOD(mysqlnd_conn_data, affected_rows)(const MYSQLND_CONN_DATA * const conn) argument 1985 MYSQLND_METHOD(mysqlnd_conn_data, affected_rows),
|
H A D | mysqlnd_ps.c | 1367 MYSQLND_METHOD(mysqlnd_stmt, affected_rows)(const MYSQLND_STMT * const s) in MYSQLND_METHOD() argument 1952 MYSQLND_METHOD(mysqlnd_stmt, affected_rows),
|
H A D | mysqlnd_result.c | 237 UPSERT_STATUS_SET_AFFECTED_ROWS(conn->upsert_status, rset_header.affected_rows); in mysqlnd_query_read_result_set_header()
|
H A D | mysqlnd_structs.h | 119 uint64_t affected_rows; member
|
/PHP-8.1/ext/pdo_firebird/ |
H A D | firebird_statement.c | 112 zend_ulong affected_rows = 0; in firebird_stmt_execute() local 147 stmt->row_count = affected_rows; in firebird_stmt_execute() 169 affected_rows += isc_vax_integer(&result[i + 3], len); in firebird_stmt_execute() 173 stmt->row_count = affected_rows; in firebird_stmt_execute()
|
/PHP-8.1/ext/mysqli/ |
H A D | mysqli.stub.php | 27 public int|string $affected_rows; variable in mysqli 553 public int|string $affected_rows; variable in mysqli_stmt
|