≡
  • 网络编程
  • 数据库
  • CMS技巧
  • 软件编程
  • PHP笔记
  • JavaScript
  • MySQL
位置:首页 > 数据库 > MySQL

MySQL LONGBLOB 类型存储二进制数据 (修改+调试+整理)

人气:787 时间:2020-07-13

这篇文章主要为大家详细介绍了MySQL LONGBLOB 类型存储二进制数据 (修改+调试+整理),具有一定的参考价值,可以用来参考一下。

感兴趣的小伙伴,下面一起跟随四海网的小编小韵来看看吧!

在DBMS中线要创建数据库test,table bintest,data字段数据类型用LONGBLOB即可测试
//测试文件c:\\test.iso,你可以找任何一个文件修改为即可,我找的是一个exe程序,修改为test.iso而已
//最大测试过加入文件大小为650M(一个正真的iso文件)
//注意:还要修改my.ini文件中的max_allowed_packet字段,我设置的是

代码如下:

 
//max_allowed_packet = 1024M 
//#define host "localhost" //mysql server 
//#define username "root" 
//#define password "674800" 
//#define database "test" 
//int port = 3306; 
// Mysql3.cpp : Defines the entry point for the console application. 
// 
#include "stdafx.h" 
#include <Winsock2.h> 
#include <mysql.h> 
#include <string.h> 
#include <stdio.h> 
#include <stdlib.h> 
#include <sys/types.h> 
#include <sys/stat.h> 
#include <fcntl.h> 
#pragma comment(lib,"libmysql.lib") 
#define INSERT_QUERY "INSERT INTO bintest(id, data) VALUES(NULL, ?)" 
#define host "localhost" //mysql server 
#define username "root" 
#define password "674800" 
#define database "test" 
int port = 3306; 
int get_file_size(char *path, off_t *size) 
{ 
struct stat file_stats; 
if(stat(path, &file_stats)) 
return -1; 
*size = file_stats.st_size; 
return 0; 
} 
void test() 
{ 
MYSQL_BIND bind[1]; 
unsigned long length; 
char* pos = NULL; 
off_t size; 
FILE* fp; 
char* filename = "c:\\test.iso"; 
if ((get_file_size(filename, &size)) == -1) //得到文件的大小 
{ 
perror("get file size" ); 
exit(1); 
} 
if ((pos = (char *)malloc(sizeof(char)*(size+1))) == NULL) 
{ 
perror("malloc buf" ); 
exit(1); 
} 
if ((fp = fopen(filename, "rb" )) == NULL) //读文件 
{ 
perror("fopen file" ); 
exit(1); 
} 
if ((fread(pos, 1, size, fp)) < 0) //读文件失败 
{ 
perror("fread file" ); 
exit(1); 
} 
MYSQL *mysql = mysql_init(NULL); //mysql 初始化 
if (!mysql) 
return; 
if (!mysql_real_connect(mysql,host,username,password,"test",port,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\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].buffer_type = MYSQL_TYPE_LONG; 
bind[0].buffer = pos; 
//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, "\n param bind failed"); 
fprintf(stderr, "\n %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, "\n send_long_data failed"); 
fprintf(stderr, "\n %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, "\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); 
} 
} 
int main() 
{ 
test(); 
//sleep(1); 
return 0; 
} 

运行结果:

本文来自:http://www.q1010.com/177/10704-0.html

注:关于MySQL LONGBLOB 类型存储二进制数据 (修改+调试+整理)的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。

关键词:MYSQL

您可能感兴趣的文章

  • MySQL 查找价格最高的图书经销商的几种SQL语句
  • MSSQL 添加字段说明
  • asp.net 将图片上传到MySQL数据库的方法
  • linux MySQL 找回密码
  • MySQL "too many connections" 错误 之 MySQL解决方法
  • MySQL 相关的环境变量
  • MySQL里Create Index 能否创建主键 Primary Key
  • MySQL 设置默认的时间值
  • MySQL my.ini 配置文件分析
  • MySQL 控制台操作
上一篇:MySQL .frm数据库文件导入的问题
下一篇:linux MySQL 找回密码
热门文章
  • mysql 修改character_set_server为utf-8的简单示例
  • 解决MySQL丢失文件localhost.localdomain.pid、mysql.sock的示例
  • MySQL 数据类型binary和varbinary的简单示例
  • MySQL:reading initial communication packet问题解决方法
  • MySql 表类型MYISAM、InnoDB区别
  • bash: mysql: command not found 的解决方法
  • MYSQL默认用户名ROOT修改方法
  • MySQL 常用命令菜鸟教程
  • MySQL 使用命令行新建用户并授予权限
  • MySql 数据库物理文件存放位置查看示例
  • 最新文章
    • MySQL查看死锁与解除死锁的简单示例
    • MySQL 慢查询的功能实例
    • MySQL查看死锁与去除死锁的简单示例
    • MySQL找出未提交事务的SQL的简单示例
    • MySQL锁阻塞的的简单示例
    • MySQL中的binary类型使用操作的示例
    • SQL优化教程之in与range查询的简单示例
    • MySQL 的 21 个规范、优化最佳实践!
    • MySQL 字符类型大小写敏感的简单示例
    • 解决mybatis-plus分页传入参数后sql where条件没有limit分页信息的问题

四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。