MySQL中怎么存儲二進制數(shù)據(jù)流,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
從事中國電信成都樞紐中心,服務器租用,云主機,網(wǎng)頁空間,國際域名空間,CDN,網(wǎng)絡代維等服務。
以下即為范例代碼 --- 按照說明編譯即可用,稍加修改即可存儲2進制文件
view plaincopy to clipboardprint?
/*
mysql存儲二進制數(shù)據(jù) linux
用途: 用 _stmt_send_long_data()來向blob字段寫入2進制數(shù)據(jù)流.
注意點:需要注意的是bind結(jié)構(gòu)的buffer_type字段,必須與要輸入的數(shù)據(jù)類型相符,
如:只寫入一個long 數(shù)據(jù),則用MYSQL_TYPE_LONG,寫入字符流,用MYSQL_TYPE_STRING,
寫入2進制數(shù)據(jù)流,用MYSQL_TYPE_BLOB
具體這個參數(shù)各字段的含義參見 mysql5.0手冊
Compile: g++ -I/usr/include/mysql -L/usr/lib/mysql -lmysqlclient mysql_test.cpp
準備工作:
create database test;
use test;
CREATE TABLE `bintest` (
`id` int(11) NOT NULL default 0,
`data` blob
) ENGINE=MyISAM;
*/
#include
#include
#include
#include
#define INSERT_QUERY "INSERT INTO bintest(id, data) VALUES(4, ?)"
void test()
{
MYSQL_BIND bind[1];
unsigned long length;
char blog_data[100] = {0};
memset(blog_data, 0x01, sizeof(blog_data));
char* pos = blog_data;
int size = 50;
MYSQL *mysql = mysql_init(NULL);
if (!mysql) return;
if (!mysql_real_connect(mysql,
"192.168.xx.xxx",
"root",
"db_user_name",
"test",
3306, NULL, 0))
{
int ret = mysql_errno(mysql);
mysql_close(mysql);
return;
}
MYSQL_STMT *stmt = mysql_stmt_init(mysql);
if (!stmt)
{
fprintf(stderr, " mysql_stmt_init(), out of memory
");
exit(0);
}
if (mysql_stmt_prepare(stmt, INSERT_QUERY, strlen(INSERT_QUERY)))
{
fprintf(stderr, "
mysql_stmt_prepare(), INSERT failed");
fprintf(stderr, "
%s", mysql_stmt_error(stmt));
exit(0);
}
memset(bind, 0, sizeof(bind));
//bind[0].buffer_type= MYSQL_TYPE_STRING;
//bind[0].buffer_type = MYSQL_TYPE_LONG;
bind[0].buffer = blog_data;
//bind[0].buffer_type = MYSQL_TYPE_TINY;
bind[0].buffer_type = MYSQL_TYPE_BLOB;
bind[0].length= &length;
bind[0].is_null= 0;
/* Bind the buffers */
if (mysql_stmt_bind_param(stmt, bind))
{
fprintf(stderr, "
param bind failed");
fprintf(stderr, "
%s", mysql_stmt_error(stmt));
exit(0);
}
int rc =0;
/* Supply data in chunks to server */
if (mysql_stmt_send_long_data(stmt,0, pos, size))
{
fprintf(stderr, "
send_long_data failed");
fprintf(stderr, "
%s", mysql_stmt_error(stmt));
exit(0);
}
pos += size;
/* Supply the next piece of data */
if (mysql_stmt_send_long_data(stmt,0, pos, size))
{
fprintf(stderr, "
send_long_data failed");
fprintf(stderr, "
%s", mysql_stmt_error(stmt));
exit(0);
}
/* Now, execute the query */
if (mysql_stmt_execute(stmt))
{
fprintf(stderr, "
mysql_stmt_execute failed");
fprintf(stderr, "
%s", mysql_stmt_error(stmt));
exit(0);
}
}
int main()
{
test();
//sleep(1);
return 0;
}
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。