mysql connector详解_MySQL Connector 编程

mysql connector详解_MySQL Connector 编程#include#include#include//使用静态对象库//#pragmacomment(lib,”C:\\ProgramFiles\\MySQL\\MySQLConnectorC6.1\\lib\\vs12\\mysqlclient.lib”)//使用动态链接库//确保libmysql.dll在系统路径中可以搜到#pragmacomment(lib,”C:\\Pr…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

#include

#include#include

//使用静态对象库//#pragma comment(lib, “C:\\Program Files\\MySQL\\MySQL Connector C 6.1\\lib\\vs12\\mysqlclient.lib”)//使用动态链接库//确保 libmysql.dll 在系统路径中可以搜到

#pragma comment(lib, “C:\\Program Files\\MySQL\\MySQL Connector C 6.1\\lib\\libmysql.lib”)

voidsimpleUsega()

{

MYSQL*conn;

conn=mysql_init(NULL);if (conn ==NULL) {

printf(“Error %u: %s\n”, mysql_errno(conn), mysql_error(conn));

exit(1);

}if (mysql_real_connect(conn, “localhost”, “user_name”,”user_password”, NULL, 0, NULL, 0) ==NULL) {

printf(“Error %u: %s\n”, mysql_errno(conn), mysql_error(conn));

exit(1);

}if (mysql_query(conn, “create database frist_db”)) {

printf(“Error %u: %s\n”, mysql_errno(conn), mysql_error(conn));

exit(1);

}

mysql_close(conn);

}

int main() {

MYSQL*mysql =NULL;char pwd[1024];char usr[1024];

printf(“Target platform word length : %d \n”, sizeof(void*) );

printf(“Connector version: %s \n”, mysql_get_client_info());//simpleUsage();//return 0;

printf(“Initializing MySQL Connector… \n”);

mysql_library_init(0, NULL, NULL); //在其他work线程产生之前初始化mysql c库, 不要让mysql_init来调用, 否则可能导致线程安全问题

if (!(mysql =mysql_init(NULL))) {

printf(“Field. \n”);gotoend;

}

printf(“OK, Conecting… \n”);

// 配置用户和密码if (0) {

printf(“Please keyin user_name and password \n”

“name:”);

scanf_s(“%s”, usr, 1024);

printf(“pwd :”);

scanf_s(“%s”, pwd, 1024);

}else{

sprintf_s(usr,1024, “default_user_name”);

sprintf_s(pwd,1024, “default_user_password”);

}

// 连接 localhost 上的服务器if (!mysql_real_connect(mysql, “localhost”, usr, pwd, (const char*) 0, 3306, NULL, 0)) {

printf(“Filed, Error %u, %s \n”, mysql_errno(mysql), mysql_error(mysql) );gotoend;

}

printf(“Login succeed. \n”);//销毁密码

sprintf_s(pwd, 1024, “00000000000000”);

// 查询数据库服务器时间

mysql_query(mysql,”SELECT NOW();”);if (!mysql_errno(mysql)) {

MYSQL_RES*result;

MYSQL_ROW row;intnum_fields;inti;

result=mysql_store_result(mysql);

num_fields=mysql_num_fields(result);while ((row =mysql_fetch_row(result)))

{for(i = 0; i < num_fields; i++)

{

printf(“%s”, row[i] ? row[i] : “NULL”);

}

printf(“\n”);

}

mysql_free_result(result);

}

end:

system(“pause”);

mysql_close(mysql);

mysql_library_end();

return 0;

}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/159509.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号