当前位置:   article > 正文

gcc环境下 使用C/C++ 连接Mysql数据库_mysqlclient.lib

mysqlclient.lib

在网上查询很久资料,都是使用VS Studio的。

没有GCC环境下,使用C/C++连接mysql数据库的详细指导,查询资料后现总结如下:

首先,先将mysql 下的include文件夹复制到自己的工程下。同时将lib文件夹下的libmysql.dll 

libmysql.lib

mysqlclient.lib

 三个文件也复制到自己的工程下。

mysql的include文件夹

 我的工程目录(使用的VS Code)

include 目录

三个文件 

完成上述操作后,开始编写连接mysql的代码

这里要注意,头文件的顺序一定要按照下图

ConnectMysql.cpp

  1. #include <stdio.h>
  2. #include <WinSock.h> //一定要包含这个
  3. #include "mysql.h" //引入mysql头文件
  4. #include <Windows.h>
  5. //包含附加依赖项
  6. #pragma comment(lib,"wsock32.lib")
  7. #pragma comment(lib,"libmysql.lib")
  8. MYSQL mysql; //mysql连接
  9. MYSQL_FIELD *fd; //字段列数组
  10. char field[32][32]; //存字段名二维数组
  11. MYSQL_RES *res; //这个结构代表返回行的一个查询结果集
  12. MYSQL_ROW column; //一个行数据的类型安全(type-safe)的表示,表示数据行的列
  13. char query[150]; //查询语句
  14. bool ConnectDatabase(); //函数声明
  15. void FreeConnect();
  16. bool QueryDatabase1(); //查询1
  17. bool QueryDatabase2(); //查询2
  18. bool InsertData(); //增
  19. bool ModifyData(); //改
  20. bool DeleteData(); //删
  21. int main(int argc, char **argv)
  22. {
  23. ConnectDatabase();
  24. QueryDatabase1();
  25. InsertData();
  26. // QueryDatabase2();
  27. ModifyData();
  28. // QueryDatabase2();
  29. DeleteData();
  30. QueryDatabase2();
  31. FreeConnect();
  32. return 0;
  33. }
  34. //连接数据库
  35. bool ConnectDatabase()
  36. {
  37. //初始化mysql
  38. mysql_init(&mysql); //连接mysql,数据库
  39. const char host[] = "localhost";
  40. const char user[] = "root";
  41. const char psw[] = "root";
  42. const char dataBase[] = "bankinfo";
  43. const int port = 3306;
  44. //返回false则连接失败,返回true则连接成功
  45. if (!(mysql_real_connect(&mysql, host, user, psw, dataBase, port, NULL, 3306)) )
  46. //中间分别是主机,用户名,密码,数据库名,端口号(可以写默认0或者3306等),可以先写成参数再传进去
  47. {
  48. printf("Error connecting to database:%s\n", mysql_error(&mysql));
  49. return false;
  50. }
  51. else
  52. {
  53. printf("连接成功 Connected...\n");
  54. return true;
  55. }
  56. }
  57. //释放资源
  58. void FreeConnect()
  59. {
  60. mysql_free_result(res); //释放一个结果集合使用的内存。
  61. mysql_close(&mysql); //关闭一个服务器连接。
  62. }
  63. /***************************数据库操作***********************************/
  64. //其实所有的数据库操作都是先写个sql语句,然后用mysql_query(&mysql,query)来完成,返回0 查询成功,返回1查询失败
  65. //包括创建数据库或表,增删改查
  66. //查询数据
  67. bool QueryDatabase1()
  68. {
  69. strcpy(query, "select * from accountinfo"); //执行查询语句,这里是查询所有,accountinfo是表名,不用加引号,用strcpy也可以
  70. mysql_query(&mysql, "set names gbk"); //设置编码格式(SET NAMES GBK也行),否则cmd下中文乱码
  71. //返回0 查询成功,返回1查询失败
  72. if (mysql_query(&mysql, query)){ // 执行指定为一个空结尾的字符串的SQL查询。
  73. printf("Query failed (%s)\n", mysql_error(&mysql));
  74. return false;
  75. }
  76. else{
  77. printf("query success\n");
  78. }
  79. //获取结果集
  80. if (!(res = mysql_store_result(&mysql))) //获得sql语句结束后返回的结果集
  81. {
  82. printf("Couldn't get result from %s\n", mysql_error(&mysql));
  83. return false;
  84. }
  85. //打印数据行数
  86. printf("number of dataline returned: %d\n", mysql_affected_rows(&mysql));
  87. //获取字段的信息
  88. char *str_field[32]; //定义一个字符串数组存储字段信息
  89. for (int i = 0; i < 6; i++) //在已知字段数量的情况下获取字段名
  90. {
  91. str_field[i] = mysql_fetch_field(res)->name; //返回一个所有字段结构的数组。
  92. }
  93. for (int i = 0; i < 6; i++) //打印字段
  94. printf("%10s\t", str_field[i]);
  95. printf("\n");
  96. //打印获取的数据
  97. while (column = mysql_fetch_row(res)) //在已知字段数量情况下,获取并打印下一行
  98. {
  99. printf("%10s\t%10s\t%10s\t%10s\n", column[0], column[1], column[2], column[3]); //column是列数组
  100. }
  101. return true;
  102. }
  103. bool QueryDatabase2()
  104. {
  105. mysql_query(&mysql, "set names gbk");
  106. //返回0 查询成功,返回1查询失败
  107. if (mysql_query(&mysql, "select * from accountinfo")) //执行SQL语句
  108. {
  109. printf("Query failed (%s)\n", mysql_error(&mysql));
  110. return false;
  111. }
  112. else
  113. {
  114. printf("query success\n");
  115. }
  116. res = mysql_store_result(&mysql);
  117. //打印数据行数
  118. printf("number of dataline returned: %d\n", mysql_affected_rows(&mysql));
  119. for (int i = 0; fd = mysql_fetch_field(res); i++) //获取字段名
  120. strcpy(field[i], fd->name);
  121. int j = mysql_num_fields(res); // 获取列数
  122. for (int i = 0; i<j; i++) //打印字段
  123. printf("%10s\t", field[i]);
  124. printf("\n");
  125. while (column = mysql_fetch_row(res))
  126. {
  127. for (int i = 0; i<j; i++)
  128. printf("%10s\t", column[i]);
  129. printf("\n");
  130. }
  131. return true;
  132. }
  133. //插入数据
  134. bool InsertData()
  135. {
  136. //可以想办法实现手动在控制台手动输入指令
  137. strcpy(query, "insert into accountinfo values ('11111','Lilei', 'wyt2588zs','lilei23@sina.cn','110','222');");
  138. if (mysql_query(&mysql, query)) //执行SQL语句
  139. {
  140. printf("Query failed (%s)\n", mysql_error(&mysql));
  141. return false;
  142. }
  143. else
  144. {
  145. printf("Insert success\n");
  146. return true;
  147. }
  148. }
  149. //修改数据
  150. bool ModifyData()
  151. {
  152. strcpy(query, "update accountinfo set cardID='lilei325@163.com' where username='Lilei'");
  153. if (mysql_query(&mysql, query)) //执行SQL语句
  154. {
  155. printf("Query failed (%s)\n", mysql_error(&mysql));
  156. return false;
  157. }
  158. else
  159. {
  160. printf("Insert success\n");
  161. return true;
  162. }
  163. }
  164. //删除数据
  165. bool DeleteData()
  166. {
  167. // sprintf(query, "delete from accountinfo where id=6");
  168. char query[100];
  169. printf("please input the sql:\n");
  170. gets(query); //这里手动输入sql语句
  171. if (mysql_query(&mysql, query)) //执行SQL语句
  172. {
  173. printf("Query failed (%s)\n", mysql_error(&mysql));
  174. return false;
  175. }
  176. else
  177. {
  178. printf("Insert success\n");
  179. return true;
  180. }
  181. }

代码参考:https://blog.csdn.net/u010811512/article/details/72436084

编译

出现此情况时,是因为没有指定头文件路径

 使用g++ 编译

 

g++ -I ./include ConnectMysql.cpp -Llib -l libmysql -o bin/mysql

-I  后填写指定从mysql中复制到你的工程目录下的头文件include

-L动态库路径 -l 动态库名

动态库使用参考:https://blog.csdn.net/done1182818968/article/details/104697521

 这里生成的可执行文件是放在bin目录下的,由于使用类动态库,所以运行时需要将动态库libmysql.dll拷贝一份放在bin目录下

 

连接成功。 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/745558
推荐阅读
相关标签
  

闽ICP备14008679号