用VS2015连接MySQL数据库,进行增删改查操作。
以前对数据库有一点点概念,操作过QT自带的SQLite数据库。
这次是临时起意,想用VS2015连接MySQL数据库,所以需要两件法宝:书 + 百度。
手里没有数据库的纸质书,所以到网上下载了两本。
一本是:《MySQL数据库应用从入门到精通 第2版》,这本电子版只有试读部分,试读部分包括了MySQL的下载和配置,对我来说已经足够了。
另一本是:《MySQL数据库入门》,正规渠道购买的电子版。
在之前的文章里夸过自己擅长挑选书籍,这里实在是忍不住再夸一下自己,确实很擅长挑书^^
然后又百度了一些连接的经验,过滤后留下觉得有用的。
其实等连接成功之后才发现:很简单,因为最新版的MySQL已经自动灭掉了很多繁琐的步骤…
进入官网https://dev.mysql.com/,下载MySQL,具体如下图。
下载之后点击安装即可,安装的时候记得全部安装,即所有组件都安装。
这样就不用单独下载mysql-for-visualstudio-1.2.9.msi一类的组件了。
可能会提示libmysql.dll找不到,去到C:\Program Files\MySQL\MySQL Server 5.7\lib,将libmysql.dll复制到 C;/Windows/system32 目录内即可
最后一步就是增删改查的代码了,ヾ(◍°∇°◍)ノ゙
#include "stdafx.h"
#include
#include
#include
#include
#include
//包含附加依赖项,也可以在工程--属性里面设置
//#pragma comment(lib,"wsock32.lib")
//#pragma comment(lib,"libmysql.lib")
MYSQL mysql; //mysql连接
MYSQL_FIELD *fd; //字段列数组
char field[32][32]; //存字段名二维数组
MYSQL_RES *res; //这个结构代表返回行的一个查询结果集
MYSQL_ROW column; //一个行数据的类型安全(type-safe)的表示,表示数据行的列
char query[150]; //查询语句
bool ConnectDatabase(); //函数声明
void FreeConnect();
bool QueryDatabase1(); //查询1
bool QueryDatabase2(); //查询2
bool InsertData();
bool ModifyData();
bool DeleteData();
int main(int argc, char **argv)
{
ConnectDatabase();
QueryDatabase1();
InsertData();
QueryDatabase2();
ModifyData();
QueryDatabase2();
DeleteData();
QueryDatabase2();
FreeConnect();
system("pause");
return 0;
}
//连接数据库
bool ConnectDatabase()
{
//初始化mysql
mysql_init(&mysql); //连接mysql,数据库
//返回false则连接失败,返回true则连接成功
if (!(mysql_real_connect(&mysql, "localhost", "root", "1234", "mytest", 3306, NULL, 0))) //中间分别是主机,用户名,密码,数据库名,端口号,可以先写成参数再传进去
{
printf("Error connecting to database:%s\n", mysql_error(&mysql));
return false;
}
else
{
printf("Connected...\n");
return true;
}
}
//释放资源
void FreeConnect()
{
//释放资源
mysql_free_result(res);
mysql_close(&mysql);
}
//数据库操作
//其实所有的数据库操作都是先写个sql语句,然后用mysql_query(&mysql,query)来完成,包括创建数据库或表,增删改查
//查询数据
bool QueryDatabase1()
{
sprintf(query, "select * from testTable"); //执行查询语句,这里是查询所有,user是表名,不用加引号,用strcpy也可以
mysql_query(&mysql, "set names gbk"); //设置编码格式(SET NAMES GBK也行),否则cmd下中文乱码
//返回0 查询成功,返回1查询失败
if (mysql_query(&mysql, query)) //执行SQL语句
{
printf("Query failed (%s)\n", mysql_error(&mysql));
sprintf(query, "use MyTest");
if (mysql_query(&mysql, query))
{
printf("use MyTest fail\n");
return false;
}
else
{
printf("use MyTest success\n");
}
// 删除表格
sprintf(query, "DROP TABLE testTable");
if (mysql_query(&mysql, query))
{
printf("DROP TABLE testTable fail\n");
}
else
{
printf("DROP TABLE testTable success\n");
}
// 创建表格
sprintf(query, "create table testTable (id int primary key, name varchar(30), password varchar(30), email varchar(30))");
if (mysql_query(&mysql, query))
{
printf("create table testTable fail\n");
return false;
}
else
{
printf("create table testTable success\n");
}
}
else
{
printf("query success\n");
}
//获取结果集
if (!(res = mysql_store_result(&mysql))) //获得sql语句结束后返回的结果集
{
printf("Couldn't get result from %s\n", mysql_error(&mysql));
return false;
}
//打印数据行数
printf("number of dataline returned: %d\n", mysql_affected_rows(&mysql));
//获取字段的信息
char *str_field[32]; //定义一个字符串数组存储字段信息
for (int i = 0; i < 4; i++) //在已知字段数量的情况下获取字段名
{
str_field[i] = mysql_fetch_field(res)->name;
}
for (int i = 0; i < 4; i++) //打印字段
printf("%10s\t", str_field[i]);
printf("\n");
//打印获取的数据
while (column = mysql_fetch_row(res)) //在已知字段数量情况下,获取并打印下一行
{
printf("%10s\t%10s\t%10s\t%10s\n", column[0], column[1], column[2], column[3]); //column是列数组
}
return true;
}
bool QueryDatabase2()
{
mysql_query(&mysql, "set names gbk");
//返回0 查询成功,返回1查询失败
if (mysql_query(&mysql, "select * from testTable")) //执行SQL语句
{
printf("Query failed (%s)\n", mysql_error(&mysql));
return false;
}
else
{
printf("query success\n");
}
res = mysql_store_result(&mysql);
//打印数据行数
printf("number of dataline returned: %d\n", mysql_affected_rows(&mysql));
for (int i = 0; fd = mysql_fetch_field(res); i++) //获取字段名
strcpy(field[i], fd->name);
int j = mysql_num_fields(res); // 获取列数
for (int i = 0; i < j; i++) //打印字段
printf("%10s\t", field[i]);
printf("\n");
while (column = mysql_fetch_row(res))
{
for (int i = 0; i < j; i++)
printf("%10s\t", column[i]);
printf("\n");
}
return true;
}
//插入数据
bool InsertData()
{
sprintf(query, "insert into testTable values (1, 'Lilei', 'wyt2588zs','[email protected]')"); //可以想办法实现手动在控制台手动输入指令
if (mysql_query(&mysql, query)) //执行SQL语句
{
printf("Insert failed (%s)\n", mysql_error(&mysql));
return false;
}
else
{
printf("Insert success\n");
return true;
}
}
//修改数据
bool ModifyData()
{
sprintf(query, "update testTable set email='[email protected]' where name='Lilei'");
if (mysql_query(&mysql, query)) //执行SQL语句
{
printf("update testTable failed (%s)\n", mysql_error(&mysql));
return false;
}
else
{
printf("update testTable success\n");
return true;
}
}
//删除数据
bool DeleteData()
{
sprintf(query, "delete from testTable where id=1");
//char query[100];
//printf("please input the sql:\n");
//gets_s(query); //这里手动输入sql语句
if (mysql_query(&mysql, query)) //执行SQL语句
{
printf("Delete failed (%s)\n", mysql_error(&mysql));
return false;
}
else
{
printf("Delete success\n");
return true;
}
}