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

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 <ndb_opts.h>
  15. #include "userInterface.h"
  16. #include "dbPopulate.h"
  17. #include <NdbMain.h>
  18. #include <NdbOut.hpp>
  19. #include <random.h>
  20. #include <NDBT.hpp>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. int useTableLogging;
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. static void usage()
  29. {
  30. }
  31. static 
  32. void usage(const char *prog)
  33. {
  34.   
  35.   ndbout_c(
  36.    "Usage: %s [-l]n"
  37.    "  -l                  Use logging and checkpointing on tablesn",
  38.    prog);
  39.   
  40.   exit(1);
  41. }
  42. NDB_STD_OPTS_VARS;
  43. NDB_COMMAND(DbCreate, "DbCreate", "DbCreate", "DbCreate", 16384)
  44. {
  45.   ndb_init();
  46.   int i;
  47.   UserHandle *uh;
  48.   
  49.   useTableLogging = 0;
  50.   
  51.   for(i = 1; i<argc; i++){
  52.     if(strcmp(argv[i], "-l") == 0){
  53.       useTableLogging = 1;
  54.     } else {
  55.       usage(argv[0]);
  56.       return 0;
  57.     }
  58.   }
  59.   ndbout_c("Using %s tables",
  60.    useTableLogging ? "logging" : "temporary");
  61.   
  62.   myRandom48Init(0x3e6f);
  63.   
  64.   uh = userDbConnect(1, "TEST_DB");
  65.   dbPopulate(uh);
  66.   userDbDisconnect(uh);
  67.   
  68.   return NDBT_ProgramExit(NDBT_OK);
  69. }