虚拟机linux下连接本机mysq数据库教程
- 首先本机安装mysql,登录数据库:
mysql -uroot -p
- 开启远程访问权限:
grant all privileges on *.* to root@'%' identified by "password";
这里是把本机所有的数据库共享给用户名为root 密码是:password
3.登录虚拟机,安装mysql,写入代码测试:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include<mysql/mysql.h>
int main()
{
MYSQL mysql;
if (NULL == mysql_init(&mysql)) {
printf("mysql_init(): %s\n", mysql_error(&mysql));
return -1;
}
if (NULL == mysql_real_connect(&mysql,
"192.168.100.24", //ip or host
"root", // name
"root", //password
"information_schema", //databases name
3306, //port
NULL,
0)) {
printf("mysql_real_connect(): %s\n", mysql_error(&mysql));
return -1;
}
printf("Connected MySQL successful! \n");
return 0;
}
注意:如果使用 gcc ***.c -o
来编译运行的话,会提示找不到mysql.h 文件。使用这个:
gcc -o *** ***.c `mysql_config --cflags --libs`
其中:`是键盘上面数字1旁边那个键,不是单引号!!!