mysql进阶

from:2020/2/12

参考:https://dev.mysql.com/doc/refman/5.7/en/c-api-function-overview.html  mysql5.7所有的C函数
参考:https://dev.mysql.com/doc/dev/mysql-server/latest/      mysql官方reference
参考:https://www.cnblogs.com/iwangzhengchao/p/10056075.html    其他人的博客示例

mysql.h 中 STDCALL 的解释:
#define STDCALL __stdcall
参考: https://www.cnblogs.com/lzhu/p/6884400.html

c++中 mysql.h 中定义的增删改查均使用同一个函数 mysql_query(MYSQL *mysql, const char *query_str); 
当然也定义了类似 prepared_statment的函数