change directory

This commit is contained in:
2024-06-06 09:43:33 +08:00
parent 76036bcee7
commit 826e1aefd5
10 changed files with 2 additions and 5 deletions

13
SERVER/hc-12/mysql.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef MYSQL_H
#define MYSQL_H
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <mysql.h>
#include <mysqld_error.h>
#include <errmsg.h>
extern int _mysql(char *sql, char *MYSQL_HOST, char *MYSQL_PORT_, char *MYSQL_USRT, char *MYSQL_PASSWORD, char *MYSQL_DB, char *MYSQL_TABLES);
#endif