mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / storage / ndb / test / ndbapi / bank / bankTimer.cpp
blob547be6b17e845d9bf38f108a807e02c72e9bea33
1 /* Copyright (c) 2003-2005 MySQL AB
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; version 2 of the License.
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 GNU General Public License for more details.
12 You should have received a copy of the GNU General Public License
13 along with this program; if not, write to the Free Software
14 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
17 #include <ndb_global.h>
19 #include <NdbOut.hpp>
21 #include <NdbApi.hpp>
22 #include <NdbMain.h>
23 #include <NDBT.hpp>
24 #include <NdbSleep.h>
25 #include <getarg.h>
26 #include "Bank.hpp"
29 int main(int argc, const char** argv){
30 ndb_init();
31 int _help = 0;
32 int _wait = 30;
33 char * _database="BANK";
35 struct getargs args[] = {
36 { "wait", 'w', arg_integer, &_wait, "Max time to wait between days", "secs" },
37 { "database", 'd', arg_string, &_database, "Database name", ""},
38 { "usage", '?', arg_flag, &_help, "Print help", "" }
40 int num_args = sizeof(args) / sizeof(args[0]);
41 int optind = 0;
42 char desc[] =
43 "This program will increase time in the bank\n";
45 if(getarg(args, num_args, argc, argv, &optind) || _help) {
46 arg_printusage(args, num_args, argv[0], desc);
47 return NDBT_ProgramExit(NDBT_WRONGARGS);
50 Ndb_cluster_connection con;
51 if(con.connect(12, 5, 1) != 0)
53 return NDBT_ProgramExit(NDBT_FAILED);
56 Bank bank(con,_database);
58 if (bank.performIncreaseTime(_wait) != 0)
59 return NDBT_ProgramExit(NDBT_FAILED);
61 return NDBT_ProgramExit(NDBT_OK);