mysql c api中load_defaults()函数的新名称是什么?
我从这个链接( http://www.kitebird.com/mysql-book/ch06-2ed.pdf)尝试了以下代码。我在 Windows 7/64 位上使用 MySQL 5.7 和 Visual Studio 2013。load_defaults() 函数不再存在。没有关于它的文档。load_defaults() 函数的新名称是什么?
#include <my_global.h>
#include <sql.h>
#include <my_sys.h> //#include <my_getopt.h>
static const char *client_groups[] = { "show_argv","client", NULL };
int main(int argc, char *argv[]) { int i;
printf("Original argument vector:\n"); for (i = 0; i < argc; i++) printf("arg %d: %s\n", i, argv[i]);
my_init(); my_load_defaults("my", client_groups, &argc, &argv);
printf("Modified argument vector:\n"); for (i = 0; i < argc; i++) printf("arg %d: %s\n", i, argv[i]); exit(0); }