bool
mysql_stmt_send_long_data(MYSQL_STMT *stmt,
unsigned int parameter_number,
const char *data,
unsigned long length)
使应用程序能够分批(或“块”)向服务器发送参数数据。在调用 mysql_stmt_bind_param()
或 mysql_stmt_bind_named_param()
之后以及调用 mysql_stmt_execute()
之前调用此函数。可以多次调用它来发送列的字符或二进制数据值的部分,该列必须是 TEXT
或 BLOB
数据类型之一。
parameter_number
指示要将数据与哪个参数关联。参数从 0 开始编号。data
是指向包含要发送数据的缓冲区的指针,length
指示缓冲区中的字节数。
注意
下一个 mysql_stmt_execute()
调用会忽略自上次调用 mysql_stmt_execute()
或 mysql_stmt_reset()
以来已使用 mysql_stmt_send_long_data()
的所有参数的绑定缓冲区。
要重置/忘记已发送的数据,请调用 mysql_stmt_reset()
。请参阅 第 6.4.23 节,“mysql_stmt_reset()”。
max_allowed_packet
系统变量控制使用 mysql_stmt_send_long_data()
发送的参数值的最大大小。
-
该参数没有字符串或二进制类型。
-
无效的参数编号。
-
命令执行顺序不正确。
-
MySQL 服务器已关闭。
-
内存不足。
-
发生未知错误。
以下示例演示如何分块发送 TEXT
列的数据。它将数据值 'MySQL - 最流行的开源数据库'
插入到 text_column
列中。假设 mysql
变量是一个有效的连接处理程序。
#define INSERT_QUERY "INSERT INTO \
test_long_data(text_column) VALUES(?)"
MYSQL_BIND bind[1];
long length;
stmt = mysql_stmt_init(mysql);
if (!stmt)
{
fprintf(stderr, " mysql_stmt_init(), out of memory\n");
exit(0);
}
if (mysql_stmt_prepare(stmt, INSERT_QUERY, strlen(INSERT_QUERY)))
{
fprintf(stderr, "\n mysql_stmt_prepare(), INSERT failed");
fprintf(stderr, "\n %s", mysql_stmt_error(stmt));
exit(0);
}
memset(bind, 0, sizeof(bind));
bind[0].buffer_type= MYSQL_TYPE_STRING;
bind[0].length= &length;
bind[0].is_null= 0;
/* Bind the buffers */
if (mysql_stmt_bind_named_param(stmt, bind, 1, NULL))
{
fprintf(stderr, "\n param bind failed");
fprintf(stderr, "\n %s", mysql_stmt_error(stmt));
exit(0);
}
/* Supply data in chunks to server */
if (mysql_stmt_send_long_data(stmt,0,"MySQL",5))
{
fprintf(stderr, "\n send_long_data failed");
fprintf(stderr, "\n %s", mysql_stmt_error(stmt));
exit(0);
}
/* Supply the next piece of data */
if (mysql_stmt_send_long_data(stmt,0,
" - The most popular Open Source database",40))
{
fprintf(stderr, "\n send_long_data failed");
fprintf(stderr, "\n %s", mysql_stmt_error(stmt));
exit(0);
}
/* Now, execute the query */
if (mysql_stmt_execute(stmt))
{
fprintf(stderr, "\n mysql_stmt_execute failed");
fprintf(stderr, "\n %s", mysql_stmt_error(stmt));
exit(0);
}