1#include <stdio.h>2#include <stdlib.h>3#include <mysql/mysql.h>45678MYSQL *mysql;9MYSQL_ROW ret_rownum;10MYSQL_RES*res;11constchar*host="你的 mysql IP";12constchar*user="root";13constchar*passwd="你的密码";14constchar*db="dingsbookroom";15intretnum=0;16voidconnectdb();1718192021...