Search Results
Send data in blocks Allows to send parameter data to the server in pieces (or chunks), e.g. if the size of a blob exceeds the size of max_allowed_packet. This function can be called multiple times to send the parts of a character or binary data value for a column, which must be one of the TEXT or BLOB datatypes.
Mar 9, 2026 · Description Object-oriented style public bool mysqli_stmt::send_long_data(int param_num, string data); Procedural style bool mysqli_stmt_send_long_data(mysqli_stmt statement, int param_num, string data); Allows to send parameter data to the server in pieces (or chunks), e.g. if the size of a blob exceeds the size of max_allowed_packet. This function can be called multiple times to send the ...
Enables an application to send parameter data to the server in pieces (or “chunks”). Call this function after mysql_stmt_bind_param() or mysql_stmt_bind_named_param() and before mysql_stmt_execute(). It can be called multiple times to send the parts of a character or binary data value for a column, which must be one of the TEXT or BLOB data types. parameter_number indicates which parameter ...
Views in a MySQL database offer the option of creating a virtual table based on the result of an SQL query. This virtual table can be queried like a normal table without changing the underlying data. ...
Return Values The PHP mysqli_stmt_send_long_data () function returns a boolean value which is true on success and false on failure.
MariaDB Connector/C API Prepared Statement Functions mysql_stmt_send_long_data mysql_stmt_send_long_data sends a parameter value in chunks to the server, enabling large TEXT or BLOB data that exceeds max_allowed_packet to be streamed in multiple calls.
People also ask
What is mysqli_stmt_send_long_data?
What is mysqli_stmt_init() function?
How do I reset/forget the sent data in MySQL?
Allows to send parameter data to the server in pieces (or chunks), e.g. if the size of a blob exceeds the size of max_allowed_packet. This function can be called multiple times to send the parts of a character or binary data value for a column, which must be one of the TEXT or BLOB datatypes.
