当前位置: 主页 > 数据库

c 读取数据库-c# 读取excel数据

发布时间:2023-02-09 10:28   浏览次数:次   作者:佚名

当然c 读取数据库mysql作为php脚本语言,apache,作为网站的后台数据库服务程序一起使用,貌似使用最广泛。 这已经做了很多。

c# 读取excel数据_c#怎么读取串口数据_c 读取数据库

同时,我是一名C程序员。 我总是想用C来尝试我遇到的一切。 这几天忙着准备军转考试。

c# 读取excel数据_c 读取数据库_c#怎么读取串口数据

正好有点空闲c 读取数据库,顺便再温习一下c和mysql数据库的访问。

c#怎么读取串口数据_c# 读取excel数据_c 读取数据库

运行环境为SunOS x4100 5.10 Generic_118855-33 i86pc i386 i86pc; 编译器是gcc,加上Llibmysqlclient库。

c 读取数据库_c#怎么读取串口数据_c# 读取excel数据

#include #include #include #include main() { MYSQL *conn; MYSQL_RES *res; MYSQL_ROW 行; char *server = "mysql"; char *user = "huzia"; char *password = "cjrIwo"; /* * / char *database = "huzia"; conn = mysql_init(NULL); /* 连接到数据库 */ if (!mysql_real_connect(conn, server, user, password, database, 0, NULL, 0)) { fprintf(stderr, "%s\n", mysql_error(conn)); 退出(1); } /* 发送 SQL 查询 */ if (mysql_query(conn, "show tables")) { fprintf(stderr, "%s\n", mysql_error(conn)); 退出(1); } res = mysql_use_result(conn); /* 输出表名 */ printf("mysql 数据库中的 MySQL 表:\n"); while ((row = mysql_fetch_row(res)) != NULL) printf("%s \n", row[0]); /* 关闭连接 */ mysql_free_result(res); mysql_close(conn); }

c# 读取excel数据_c 读取数据库_c#怎么读取串口数据

运行成功。