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

MySQL数据库

开发平台:

Visual C++

  1. #!@PERL@
  2. # Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  3. #
  4. # This library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Library General Public
  6. # License as published by the Free Software Foundation; either
  7. # version 2 of the License, or (at your option) any later version.
  8. #
  9. # This library is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. # Library General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Library General Public
  15. # License along with this library; if not, write to the Free
  16. # Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  17. # MA 02111-1307, USA
  18. #
  19. # AS3AP single-user benchmark.
  20. #
  21. ##################### Standard benchmark inits ##############################
  22. use Cwd;
  23. use DBI;
  24. use Benchmark;
  25. $pwd = cwd(); $pwd = "." if ($pwd eq '');
  26. require "$pwd/bench-init.pl" || die "Can't read Configuration file: $!n";
  27. $opt_loop_count=1;
  28. #Create tables 
  29. $dbh = $server->connect();
  30. #Create Table
  31. $sth = $dbh->do("drop table uniques");
  32. $sth = $dbh->do("drop table updates");
  33. $sth = $dbh->do("drop table hundred");
  34. $sth = $dbh->do("drop table tenpct");
  35. $sth = $dbh->do("drop table tiny");
  36. #Temporary table
  37. $sth = $dbh->do("drop table saveupdates");
  38. @fields=("col_key     int             not null",
  39.  "col_int     int             not null",
  40.  "col_signed  int             not null",
  41.  "col_float   float           not null",
  42.  "col_double  float           not null",
  43.  "col_decim   numeric(18,2)   not null",
  44.  "col_date    char(20)        not null",
  45.  "col_code    char(10)        not null",
  46.  "col_name    char(20)        not null",
  47.  "col_address varchar(80)     not null");
  48. do_many($dbh,$server->create("uniques",@fields,[]));
  49. do_many($dbh,$server->create("updates",@fields,[]));
  50. do_many($dbh,$server->create("hundred",@fields,[]));
  51. do_many($dbh,$server->create("tenpct",@fields,[]));
  52. do_many($dbh,$server->create("tiny",["col_key int not null"],[]));
  53. print "Start AS3AP benchmarknn";
  54. $start_time=new Benchmark;
  55. print "Load DATAn";
  56. #Load DATA
  57. @table_names=("uniques","updates","hundred","tenpct","tiny");
  58. $loop_time=new Benchmark;
  59. if ($opt_fast && $server->{'limits'}->{'load_data_infile'})
  60. {
  61.   for ($ti = 0; $ti <= $#table_names; $ti++)
  62.   {
  63.     my $table_name = $table_names[$ti];
  64.     my $file = "$pwd/Data/AS3AP/${table_name}.new";
  65.     print "$table_name - $filen" if ($opt_debug);
  66.     $row_count += $server->insert_file($table_name,$file,$dbh);
  67.   }
  68. }
  69. else
  70. {
  71.   for ($ti = 0; $ti <= $#table_names; $ti++)
  72.   {
  73.     my $table_name = $table_names[$ti];
  74.     print "$table_name - $filen" if ($opt_debug);
  75.     my $insert_start = "insert into $table_name values (";
  76.     open(DATA, "$pwd/Data/AS3AP/${table_name}.new") || die "Can't open text file: $pwd/Data/AS3AP/${table_name}.newn";
  77.     while(<DATA>)
  78.     {
  79.       chomp;
  80.       next unless ( $_ =~ /w/ );     # skip blank lines
  81.       $command = $insert_start."$_".")";
  82.       $command =~ $server->fix_to_insert($command);
  83.       print "$commandn" if ($opt_debug);
  84.       $sth = $dbh->do($command) or die "Got error: $DBI::errstr when executing '$command'n";
  85.   $row_count++;
  86.     }
  87.     close(DATA);
  88.   }
  89. }
  90. $end_time=new Benchmark;
  91. print "Time for Load Data - " . "($row_count): " .
  92. timestr(timediff($end_time, $loop_time),"all") . "nn";
  93. print "Create Indexn";
  94. test_command("create_idx_uniques_key_bt",
  95.      "time for create_idx_uniques_key_bt",
  96.      "create unique index uniques_key_bt on uniques (col_key)",$dbh,$opt_loop_count);
  97. test_command("create_idx_updates_key_bt",
  98.      "time for create_idx_updates_key_bt",
  99.      "create unique index updates_key_bt on updates (col_key)",$dbh,$opt_loop_count);
  100. test_command("create_idx_hundred_key_bt",
  101.      "time for create_idx_hundred_key_bt",
  102.      "create unique index hundred_key_bt on hundred (col_key)",
  103.      $dbh,$opt_loop_count);
  104. test_command("create_idx_tenpct_key_bt",
  105.      "time for create_idx_tenpct_key_bt",
  106.      "create unique index tenpct_key_bt on tenpct (col_key)",$dbh,$opt_loop_count);
  107. test_command("create_idx_tenpct_key_code_bt",
  108.      "time for create_idx_tenpct_key_code_bt",
  109.      "create index tenpct_key_code_bt on tenpct (col_key,col_code)",
  110.      $dbh,$opt_loop_count);
  111. test_command("create_idx_tiny_key_bt",
  112.      "time for create_idx_tiny_key_bt",
  113.      "create index tiny_key_bt on tiny (col_key)",$dbh,$opt_loop_count);
  114. test_command("create_idx_tenpct_int_bt",
  115.      "time for create_idx_tenpct_int_bt",
  116.      "create index tenpct_int_bt on tenpct (col_int)",$dbh,$opt_loop_count);
  117. test_command("create_idx_tenpct_signed_bt",
  118.      "time for create_idx_tenpct_signed_bt",
  119.      "create index tenpct_signed_bt on tenpct (col_signed)",$dbh,$opt_loop_count);
  120. test_command("create_idx_uniques_code_h",
  121.      "time for create_idx_uniques_code_h",
  122.      "create index uniques_code_h on uniques (col_code)",$dbh,$opt_loop_count);
  123. test_command("create_idx_tenpct_double_bt",
  124.      "time for create_idx_tenpct_double_bt",
  125.      "create index tenpct_double_bt on tenpct (col_double)",$dbh,$opt_loop_count);
  126. test_command("create_idx_updates_decim_bt",
  127.      "time for create_idx_updates_decim_bt",
  128.      "create index updates_decim_bt on updates (col_decim)",$dbh,$opt_loop_count);
  129. test_command("create_idx_tenpct_float_bt",
  130.      "time for create_idx_tenpct_float_bt",
  131.      "create index tenpct_float_bt on tenpct (col_float)",$dbh,$opt_loop_count);
  132. test_command("create_idx_updates_int_bt",
  133.      "time for create_idx_updates_int_bt",
  134.      "create index updates_int_bt on updates (col_int)",$dbh,$opt_loop_count);
  135. test_command("create_idx_tenpct_decim_bt",
  136.      "time for create_idx_tenpct_decim_bt",
  137.      "create index tenpct_decim_bt on tenpct (col_decim)",$dbh,$opt_loop_count);
  138. test_command("create_idx_hundred_code_h",
  139.      "time for create_idx_hundred_code_h",
  140.      "create index hundred_code_h on hundred (col_code)",$dbh,$opt_loop_count);
  141. test_command("create_idx_tenpct_name_h",
  142.      "time for create_idx_tenpct_name_h",
  143.      "create index tenpct_name_h on tenpct (col_name)",$dbh,$opt_loop_count);
  144. test_command("create_idx_updates_code_h",
  145.      "time for create_idx_updates_code_h",
  146.      "create index updates_code_h on updates (col_code)",$dbh,$opt_loop_count);
  147. test_command("create_idx_tenpct_code_h",
  148.      "time for create_idx_tenpct_code_h",
  149.      "create index tenpct_code_h on tenpct (col_code)",$dbh,$opt_loop_count);
  150. test_command("create_idx_updates_double_bt",
  151.      "time for create_idx_updates_double_bt",
  152.      "create index updates_double_bt on updates (col_double)",$dbh,$opt_loop_count);
  153. test_command("create_idx_hundred_foreign",
  154.      "time for create_idx_hundred_foreign",
  155.      "alter table hundred add constraint fk_hundred_updates foreign key (col_signed) 
  156.       references updates (col_key)",$dbh,$opt_loop_count);
  157. test_query("sel_1_cl",
  158.    "Time to sel_1_cl",
  159.    "select col_key, col_int, col_signed, col_code, col_double, col_name 
  160.       from updates where col_key = 1000",$dbh,$opt_loop_count);
  161. test_query("join_3_cl",
  162.    "Time to join_3_cl",
  163.    "select uniques.col_signed, uniques.col_date, 
  164.    hundred.col_signed, hundred.col_date, 
  165.    tenpct.col_signed, tenpct.col_date 
  166.     from uniques, hundred, tenpct 
  167.     where uniques.col_key = hundred.col_key 
  168.   and uniques.col_key = tenpct.col_key 
  169.   and uniques.col_key = 1000",$dbh,$opt_loop_count);
  170. test_query("sel_100_ncl",
  171.    "Time to sel_100_ncl",
  172.    "select col_key, col_int, col_signed, col_code,col_double, col_name
  173.     from updates where col_int <= 100",$dbh,$opt_loop_count);
  174. test_query("table_scan",
  175.    "Time to table_scan",
  176.    "select * from uniques where col_int = 1",$dbh,$opt_loop_count);
  177. test_query("agg_func",
  178.    "Time for agg_func",
  179.    "select min(col_key) from hundred group by col_name",$dbh,$opt_loop_count);
  180. test_query("agg_scal",
  181.    "Time for agg_scal",
  182.    "select min(col_key) from uniques",$dbh,$opt_loop_count);
  183. test_query("sel_100_cl",
  184.   "Time for sel_100_cl",
  185.   "select col_key, col_int, col_signed, col_code, 
  186.   col_double, col_name 
  187.    from updates where col_key <= 100",$dbh,$opt_loop_count);
  188. test_query("join_3_ncl",
  189.    "Time for join_3_ncl",
  190.    "select uniques.col_signed, uniques.col_date, 
  191.    hundred.col_signed, hundred.col_date, 
  192.    tenpct.col_signed, tenpct.col_date 
  193.     from uniques, hundred, tenpct 
  194.     where uniques.col_code = hundred.col_code 
  195.   and uniques.col_code = tenpct.col_code 
  196.   and uniques.col_code = 'BENCHMARKS'",$dbh,$opt_loop_count);
  197. test_query("sel_10pct_ncl",
  198.    "Time for sel_10pct_ncl",
  199.    "select col_key, col_int, col_signed, col_code, 
  200.    col_double, col_name 
  201.     from tenpct 
  202.     where col_name = 'THE+ASAP+BENCHMARKS+'",$dbh,$opt_loop_count);
  203. if ($limits->{'subqueries'}){
  204.   test_query("agg_simple_report",
  205.      "Time for agg_simple_report",
  206.      "select avg(updates.col_decim) 
  207.       from updates 
  208.       where updates.col_key in 
  209. (select updates.col_key 
  210.  from updates, hundred 
  211.  where hundred.col_key = updates.col_key 
  212.        and updates.col_decim > 980000000)",$dbh,$opt_loop_count);
  213. }else{
  214.  print "agg_simple_report - Failednn";
  215. }
  216. test_query("agg_info_retrieval",
  217.    "Time for agg_info_retrieval",
  218.    "select count(col_key) 
  219.     from tenpct 
  220.     where col_name = 'THE+ASAP+BENCHMARKS' 
  221.   and col_int <= 100000000 
  222.   and col_signed between 1 and 99999999 
  223.   and not (col_float between -450000000 and 450000000) 
  224.   and col_double > 600000000 
  225.   and col_decim < -600000000",$dbh,$opt_loop_count);
  226. if ($limits->{'views'}){
  227.   test_query("agg_create_view",
  228.      "Time for agg_create_view",
  229.      "create view 
  230. reportview(col_key,col_signed,col_date,col_decim, 
  231. col_name,col_code,col_int) as 
  232.    select updates.col_key, updates.col_signed, 
  233.    updates.col_date, updates.col_decim, 
  234.    hundred.col_name, hundred.col_code, 
  235.    hundred.col_int 
  236.    from updates, hundred 
  237.    where updates.col_key = hundred.col_key",$dbh,$opt_loop_count);
  238.   test_query("agg_subtotal_report",
  239.      "Time for agg_subtotal_report",
  240.      "select avg(col_signed), min(col_signed), max(col_signed), 
  241.      max(col_date), min(col_date), 
  242.      count(distinct col_name), count(col_name), 
  243.      col_code, col_int 
  244.       from reportview 
  245.       where col_decim >980000000 
  246.       group by col_code, col_int",$dbh,$opt_loop_count);
  247.   test_query("agg_total_report",
  248.      "Time for agg_total_report",
  249.      "select avg(col_signed), min(col_signed), max(col_signed), 
  250.      max(col_date), min(col_date), 
  251.      count(distinct col_name), count(col_name), 
  252.      count(col_code), count(col_int) 
  253.       from reportview 
  254.       where col_decim >980000000",$dbh,$opt_loop_count);
  255. }else{
  256.   print "agg_create_view - Failednn";
  257.   print "agg_subtotal_report - Failednn";
  258.   print "agg_total_report - Failednn";
  259. }
  260. #fix from here
  261. test_query("join_2_cl",
  262.            "Time for join_2_cl",
  263.            "select uniques.col_signed, uniques.col_name, 
  264.                     hundred.col_signed, hundred.col_name 
  265.              from uniques, hundred 
  266.              where uniques.col_key = hundred.col_key 
  267.               and uniques.col_key =1000"
  268.            ,$dbh,$opt_loop_count);
  269. test_query("join_2",
  270.            "Time for join_2",
  271.            "select uniques.col_signed, uniques.col_name, 
  272.                      hundred.col_signed, hundred.col_name 
  273.                 from uniques, hundred 
  274.                where uniques.col_address = hundred.col_address 
  275.                  and uniques.col_address = 'SILICON VALLEY'"
  276.            ,$dbh,$opt_loop_count);
  277. test_query("sel_variable_select_low",
  278.            "Time for sel_variable_select_low",
  279.            "select col_key, col_int, col_signed, col_code, 
  280.                     col_double, col_name 
  281.                     from tenpct 
  282.                     where col_signed < -500000000"
  283.            ,$dbh,$opt_loop_count);
  284. test_query("sel_variable_select_high",
  285.            "Time for sel_variable_select_high",
  286.            "select col_key, col_int, col_signed, col_code,
  287.                     col_double, col_name
  288.                     from tenpct
  289.                     where col_signed < -250000000"
  290.            ,$dbh,$opt_loop_count);
  291. test_query("join_4_cl",
  292.            "Time for join_4_cl",
  293.            "select uniques.col_date, hundred.col_date, 
  294.                     tenpct.col_date, updates.col_date 
  295.              from uniques, hundred, tenpct, updates 
  296.              where uniques.col_key = hundred.col_key 
  297.                and uniques.col_key = tenpct.col_key 
  298.                and uniques.col_key = updates.col_key 
  299.                and uniques.col_key = 1000"
  300.            ,$dbh,$opt_loop_count);
  301. test_query("proj_100",
  302.            "Time for proj_100",
  303.            "select distinct col_address, col_signed from hundred"
  304.            ,$dbh,$opt_loop_count);
  305. test_query("join_4_ncl",
  306.            "Time for join_4_ncl",
  307.            "select uniques.col_date, hundred.col_date, 
  308.                         tenpct.col_date, updates.col_date 
  309.                 from uniques, hundred, tenpct, updates 
  310.                 where uniques.col_code = hundred.col_code 
  311.                     and uniques.col_code = tenpct.col_code 
  312.                     and uniques.col_code = updates.col_code 
  313.                     and uniques.col_code = 'BENCHMARKS'"
  314.            ,$dbh,$opt_loop_count);
  315. test_query("proj_10pct",
  316.            "Time for proj_10pct",
  317.            "select distinct col_signed from tenpct"
  318.            ,$dbh,$opt_loop_count);
  319. test_query("sel_1_ncl",
  320.            "Time for sel_1_ncl",
  321.            "select col_key, col_int, col_signed, col_code, 
  322.                     col_double, col_name 
  323.                     from updates where col_code = 'BENCHMARKS'"
  324.            ,$dbh,$opt_loop_count);
  325. test_query("join_2_ncl",
  326.            "Time for join_2_ncl",
  327.            "select uniques.col_signed, uniques.col_name, 
  328.                          hundred.col_signed, hundred.col_name 
  329.                     from uniques, hundred 
  330.                     where uniques.col_code = hundred.col_code 
  331.                     and uniques.col_code = 'BENCHMARKS'"
  332.            ,$dbh,$opt_loop_count);
  333. if ($limits->{'foreign_key'}){ 
  334.   do_many($dbh,$server->create("integrity_temp",@fields,[]));
  335.   test_query("integrity_test_1",
  336.      "Time for integrity_test",
  337.      "insert into integrity_temp select * 
  338.       from hundred where col_int=0",$dbh,$opt_loop_count);
  339.   test_query("integrity_test_2",
  340.      "Time for integrity_test",
  341.      "update hundred set col_signed = '-500000000' 
  342.       where col_int = 0",$dbh,$opt_loop_count);
  343.   test_query("integrity_test_3",
  344.      "Time for integrity_test",
  345.      "update hundred set col_signed = '-500000000' 
  346.       where col_int = 0",$dbh,$opt_loop_count);
  347. }else{
  348. print "integrity_test  - Failednn";
  349. }
  350. push @drop_seq_command,$server->drop_index("updates","updates_int_bt");
  351. push @drop_seq_command,$server->drop_index("updates","updates_double_bt");
  352. push @drop_seq_command,$server->drop_index("updates","updates_decim_bt");
  353. push @drop_seq_command,$server->drop_index("updates","updates_code_h");
  354. test_many_command("Drop updates keys",
  355.            "Time for drop_updates_keys",
  356.            @drop_seq_command,$dbh,$opt_loop_count);
  357. do_many($dbh,$server->create("saveupdates",@fields,[]));
  358. test_command("bulk_save",
  359.            "Time for bulk_save",
  360.            "insert into saveupdates select * 
  361.                     from updates where col_key between 5000 and 5999"
  362.            ,$dbh,$opt_loop_count);
  363. test_command("bulk_modify",
  364.            "Time for bulk_modify",
  365.            "update updates 
  366.                     set col_key = col_key - 100000 
  367.                     where col_key between 5000 and 5999"
  368.            ,$dbh,$opt_loop_count);
  369. safe_command("upd_append_duplicate",
  370.            "Time for upd_append_duplicate",
  371.            "insert into updates  
  372.                  values (6000, 0, 60000, 39997.90, 
  373.                           50005.00, 50005.00, 
  374.                           '11/10/1985', 'CONTROLLER', 
  375.                           'ALICE IN WONDERLAND', 
  376.                           'UNIVERSITY OF ILLINOIS AT CHICAGO')"
  377.            ,$dbh,$opt_loop_count);
  378. test_command("upd_remove_duplicate",
  379.            "Time for upd_remove_duplicate",
  380.            "delete from updates where col_key = 6000 and col_int = 0"
  381.            ,$dbh,$opt_loop_count);
  382. test_command("upd_app_t_mid",
  383.            "Time for upd_app_t_mid",
  384.            "insert into updates 
  385.               values (5005, 5005, 50005, 50005.00, 50005.00, 
  386.                       50005.00, '1/1/1988', 'CONTROLLER', 
  387.                       'ALICE IN WONDERLAND', 
  388.                       'UNIVERSITY OF ILLINOIS AT CHICAGO')"
  389.            ,$dbh,$opt_loop_count);
  390. test_command("upd_mod_t_mid",
  391.            "Time for upd_mod_t_mid",
  392.            "update updates set col_key = '-5000' 
  393.                 where col_key = 5005"
  394.            ,$dbh,$opt_loop_count);
  395. test_command("upd_del_t_mid",
  396.            "Time for upd_del_t_mid",
  397.            "delete from updates 
  398.                where (col_key='5005') or (col_key='-5000')"
  399.            ,$dbh,$opt_loop_count);
  400. test_command("upd_app_t_end",
  401.            "Time for upd_app_t_end",
  402.            "delete from updates 
  403.                where (col_key='5005') or (col_key='-5000')"
  404.            ,$dbh,$opt_loop_count);
  405. test_command("upd_mod_t_end",
  406.            "Time for upd_mod_t_end",
  407.            "update updates 
  408.                 set col_key = -1000 
  409.                 where col_key = 1000000001"
  410.            ,$dbh,$opt_loop_count);
  411. test_command("upd_del_t_end",
  412.            "Time for upd_del_t_end",
  413.            "delete from updates where col_key = -1000"
  414.            ,$dbh,$opt_loop_count);
  415. test_command("create_idx_updates_code_h",
  416.      "time for create_idx_updates_code_h",
  417.      "create index updates_code_h on updates (col_code)",
  418.      $dbh,$opt_loop_count);
  419. test_command("upd_app_t_mid",
  420.            "Time for upd_app_t_mid",
  421.            "insert into updates 
  422.               values (5005, 5005, 50005, 50005.00, 50005.00, 
  423.                       50005.00, '1/1/1988', 'CONTROLLER', 
  424.                       'ALICE IN WONDERLAND', 
  425.                       'UNIVERSITY OF ILLINOIS AT CHICAGO')"
  426.            ,$dbh,$opt_loop_count);
  427. test_command("upd_mod_t_cod",
  428.            "Time for upd_mod_t_cod",
  429.            "update updates 
  430.                 set col_code = 'SQL+GROUPS' 
  431.                 where col_key = 5005"
  432.            ,$dbh,$opt_loop_count);
  433. test_command("upd_del_t_mid",
  434.            "Time for upd_del_t_mid",
  435.            "delete from updates 
  436.                where (col_key='5005') or (col_key='-5000')"
  437.            ,$dbh,$opt_loop_count);
  438. test_command("create_idx_updates_int_bt",
  439.      "time for create_idx_updates_int_bt",
  440.      "create index updates_int_bt on updates (col_int)",
  441.      $dbh,$opt_loop_count);
  442. test_command("upd_app_t_mid",
  443.            "Time for upd_app_t_mid",
  444.            "insert into updates 
  445.               values (5005, 5005, 50005, 50005.00, 50005.00, 
  446.                       50005.00, '1/1/1988', 'CONTROLLER', 
  447.                       'ALICE IN WONDERLAND', 
  448.                       'UNIVERSITY OF ILLINOIS AT CHICAGO')"
  449.            ,$dbh,$opt_loop_count);
  450. test_command("upd_mod_t_int",
  451.            "Time for upd_mod_t_int",
  452.            "update updates set col_int = 50015 where col_key = 5005"
  453.            ,$dbh,$opt_loop_count);
  454. test_command("upd_del_t_mid",
  455.            "Time for upd_del_t_mid",
  456.            "delete from updates 
  457.                where (col_key='5005') or (col_key='-5000')"
  458.            ,$dbh,$opt_loop_count);
  459. test_command("bulk_append",
  460.            "Time for bulk_append",
  461.            "insert into updates select * from saveupdates"
  462.            ,$dbh,$opt_loop_count);
  463. test_command("bulk_delete",
  464.            "Time for bulk_delete",
  465.            "delete from updates where col_key < 0"
  466.            ,$dbh,$opt_loop_count);
  467. ################################ END ###################################
  468. ####
  469. #### End of the test...Finally print time used to execute the
  470. #### whole test.
  471. $dbh->disconnect;
  472. end_benchmark($start_time);
  473. ############################ HELP FUNCTIONS ##############################
  474. sub test_query
  475. {
  476.   my($test_text,$result_text,$query,$dbh,$count)=@_;
  477.   my($i,$loop_time,$end_time);
  478.   print $test_text . "n";
  479.   $loop_time=new Benchmark;
  480.   for ($i=0 ; $i < $count ; $i++)
  481.   {
  482.     defined(fetch_all_rows($dbh,$query)) or warn $DBI::errstr;
  483.   }
  484.   $end_time=new Benchmark;
  485.   print $result_text . "($count): " .
  486.   timestr(timediff($end_time, $loop_time),"all") . "nn";
  487. }
  488. sub test_command
  489. {
  490.   my($test_text,$result_text,$query,$dbh,$count)=@_;
  491.   my($i,$loop_time,$end_time);
  492.   print $test_text . "n";
  493.   $loop_time=new Benchmark;
  494.   for ($i=0 ; $i < $count ; $i++)
  495.   {
  496.     $dbh->do($query) or die $DBI::errstr;
  497.   }
  498.   $end_time=new Benchmark;
  499.   print $result_text . "($count): " .
  500.   timestr(timediff($end_time, $loop_time),"all") . "nn";
  501. }
  502. sub safe_command
  503. {
  504.   my($test_text,$result_text,$query,$dbh,$count)=@_;
  505.   my($i,$loop_time,$end_time);
  506.   print $test_text . "n";
  507.   $loop_time=new Benchmark;
  508.   for ($i=0 ; $i < $count ; $i++)
  509.   {
  510.     safe_do_many($dbh,$query); 
  511.   }
  512.   $end_time=new Benchmark;
  513.   print $result_text . "($count): " .
  514.   timestr(timediff($end_time, $loop_time),"all") . "nn";
  515. }
  516. sub test_many_command
  517. {
  518.   my($test_text,$result_text,$query,$dbh,$count)=@_;
  519.   my($i,$loop_time,$end_time);
  520.   $loop_time=new Benchmark;
  521.   for ($i=0 ; $i < $count ; $i++)
  522.   {
  523.     safe_do_many($dbh, @$query);
  524.   }
  525.   $end_time=new Benchmark;
  526.   print $result_text . "($count): " .
  527.   timestr(timediff($end_time, $loop_time),"all") . "nn";
  528. }