hugoPkDelete.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <ndb_global.h>
  14. #include <NdbOut.hpp>
  15. #include <NdbApi.hpp>
  16. #include <NdbMain.h>
  17. #include <NDBT.hpp> 
  18. #include <NdbSleep.h>
  19. #include <getarg.h>
  20. #include <HugoTransactions.hpp>
  21. int main(int argc, const char** argv){
  22.   ndb_init();
  23.   int _records = 0;
  24.   int _loops = 1;
  25.   int _batch = 0;
  26.   const char* _tabname = NULL;
  27.   int _help = 0;
  28.   
  29.   struct getargs args[] = {
  30.     { "loops", 'l', arg_integer, &_loops, "number of times to run this program(0=infinite loop)", "loops" },
  31.     //    { "batch", 'b', arg_integer, &_batch, "batch value", "batch" },
  32.     { "records", 'r', arg_integer, &_records, "Number of records", "records" },
  33.     { "usage", '?', arg_flag, &_help, "Print help", "" }
  34.   };
  35.   int num_args = sizeof(args) / sizeof(args[0]);
  36.   int optind = 0;
  37.   char desc[] = 
  38.     "tabnamen"
  39.     "This program will delete all records in a table using PK n";
  40.   
  41.   if(getarg(args, num_args, argc, argv, &optind) ||
  42.      argv[optind] == NULL || _records == 0 || _help) {
  43.     arg_printusage(args, num_args, argv[0], desc);
  44.     return NDBT_ProgramExit(NDBT_WRONGARGS);
  45.   }
  46.   _tabname = argv[optind];
  47.   // Connect to Ndb
  48.   Ndb MyNdb( "TEST_DB" );
  49.   if(MyNdb.init() != 0){
  50.     ERR(MyNdb.getNdbError());
  51.     return NDBT_ProgramExit(NDBT_FAILED);
  52.   }
  53.   while(MyNdb.waitUntilReady() != 0)
  54.     ndbout << "Waiting for ndb to become ready..." << endl;
  55.    
  56.   // Check if table exists in db
  57.   const NdbDictionary::Table * pTab = NDBT_Table::discoverTableFromDb(&MyNdb, _tabname);
  58.   if(pTab == NULL){
  59.     ndbout << " Table " << _tabname << " does not exist!" << endl;
  60.     return NDBT_ProgramExit(NDBT_WRONGARGS);
  61.   }
  62.   HugoTransactions hugoTrans(*pTab);
  63.   int i = 0;
  64.   while (i<_loops || _loops==0) {
  65.     ndbout << i << ": ";
  66.     if (hugoTrans.pkDelRecords(&MyNdb, _records) != 0){
  67.       return NDBT_ProgramExit(NDBT_FAILED);
  68.     }
  69.     i++;
  70.   }
  71.   return NDBT_ProgramExit(NDBT_OK);
  72. }