0

Linux下gcc中用c连接mysql

Posted in C at 九月 13th, 2011 / No Comments »

代码: #include "stdio.h" #include "stdlib.h" #include "mysql.h" #define HOST "127.0.0.1" #define USER "root" #define PASSWORD "654321" #define DB "test" main() {     MYSQL mysql;     MYSQ...