mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
77 lines
1.7 KiB
C
77 lines
1.7 KiB
C
/*
|
|
Copyright (c) 2016 MariaDB Corporation AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published
|
|
by the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
|
|
/**
|
|
Some basic tests of the client API.
|
|
*/
|
|
|
|
#include "my_test.h"
|
|
#include "ma_common.h"
|
|
|
|
static int perf1(MYSQL *mysql)
|
|
{
|
|
int rc;
|
|
MYSQL_STMT *stmt;
|
|
const char *stmtstr= "SELECT s.emp_no, s.salary, e.emp_no, e.first_name, e.last_name, e.gender FROM salaries s, employees e WHERE s.emp_no = e.emp_no";
|
|
|
|
rc= mysql_select_db(mysql, "employees");
|
|
if (rc)
|
|
{
|
|
diag("Employees database not installed");
|
|
return SKIP;
|
|
}
|
|
|
|
stmt= mysql_stmt_init(mysql);
|
|
|
|
diag("prepare");
|
|
rc= mysql_stmt_prepare(stmt, SL(stmtstr));
|
|
check_stmt_rc(rc, stmt);
|
|
|
|
diag("execute");
|
|
rc= mysql_stmt_execute(stmt);
|
|
check_stmt_rc(rc, stmt);
|
|
|
|
diag("store");
|
|
rc= mysql_stmt_store_result(stmt);
|
|
check_stmt_rc(rc, stmt);
|
|
|
|
diag("fetch");
|
|
while (!mysql_stmt_fetch(stmt));
|
|
|
|
mysql_stmt_close(stmt);
|
|
return OK;
|
|
}
|
|
|
|
struct my_tests_st my_tests[] = {
|
|
{"perf1", perf1, TEST_CONNECTION_NEW, 0, NULL, NULL},
|
|
{NULL, NULL, 0, 0, NULL, NULL}
|
|
};
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
if (argc > 1)
|
|
get_options(argc, argv);
|
|
|
|
get_envvars();
|
|
|
|
run_tests(my_tests);
|
|
|
|
return(exit_status());
|
|
}
|