Files
obconnector-c/unittest/ob20_test/ob20_clientinfo_test.c
2022-10-17 16:49:00 +08:00

52 lines
1.4 KiB
C

#include <stdio.h>
#include <string.h>
#include "mysql.h"
#include "test_util.h"
#include "ob_object.h"
#include "ob_protocol20.h"
#include "ob_full_link_trace.h"
int main(int argc, char** argv) {
mysql_library_init(0, NULL, NULL);
MYSQL *mysql = mysql_init(NULL);
MYSQL_RES *RES;
unsigned int timeout = 3000;
// init_conn_info(OB_MYSQL_MODE);
// mysql_options(mysql, MYSQL_OPT_CONNECT_TIMEOUT, &timeout);
if (6 == argc) {
DBHOST = argv[1];
DBUSER = argv[2];
DBPASS = argv[3];
DBNAME = argv[4];
DBPORT = atoi(argv[5]);
printf("host is %s, user is %s, pass is %s, name is %s, port is %u\n", DBHOST, DBUSER, DBPASS, DBNAME, DBPORT);
}
if (mysql_real_connect(mysql, DBHOST, DBUSER, DBPASS, DBNAME, DBPORT, DBSOCK, DBPCNT) == NULL)
{
my_log("connect failed: %s, host:%s, port:%d, user:%s, pass:%s, dbname:%s",
mysql_error(mysql),DBHOST, DBPORT, DBUSER, DBPASS, DBNAME);
mysql_close(mysql);
mysql_library_end();
return 0;
} else {
my_log("connect %s:%d using %s succ", DBHOST, DBPORT, DBUSER);
}
{
const char *client_info = "cli";
flt_set_client_info(mysql, client_info);
if (mysql_query(mysql, "select 1 from dual where 1 = 0;")) {
printf("query one error\n");
return 0;
} else {
RES = mysql_store_result(mysql);
sleep(10);
}
}
mysql_library_end();
return 0;
}