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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 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. /* Show databases, tables or columns */
  14. #define SHOW_VERSION "9.5"
  15. #include "client_priv.h"
  16. #include <my_sys.h>
  17. #include <m_string.h>
  18. #include <mysql.h>
  19. #include <mysqld_error.h>
  20. #include <signal.h>
  21. #include <stdarg.h>
  22. #include <sslopt-vars.h>
  23. static my_string host=0,opt_password=0,user=0;
  24. static my_bool opt_show_keys=0,opt_compress=0,opt_status=0, tty_password=0;
  25. static uint opt_verbose=0;
  26. static char *default_charset= (char*) MYSQL_DEFAULT_CHARSET_NAME;
  27. #ifdef HAVE_SMEM 
  28. static char *shared_memory_base_name=0;
  29. #endif
  30. static uint opt_protocol=0;
  31. static void get_options(int *argc,char ***argv);
  32. static uint opt_mysql_port=0;
  33. static int list_dbs(MYSQL *mysql,const char *wild);
  34. static int list_tables(MYSQL *mysql,const char *db,const char *table);
  35. static int list_table_status(MYSQL *mysql,const char *db,const char *table);
  36. static int list_fields(MYSQL *mysql,const char *db,const char *table,
  37.        const char *field);
  38. static void print_header(const char *header,uint head_length,...);
  39. static void print_row(const char *header,uint head_length,...);
  40. static void print_trailer(uint length,...);
  41. static void print_res_header(MYSQL_RES *result);
  42. static void print_res_top(MYSQL_RES *result);
  43. static void print_res_row(MYSQL_RES *result,MYSQL_ROW cur);
  44. static const char *load_default_groups[]= { "mysqlshow","client",0 };
  45. static my_string opt_mysql_unix_port=0;
  46. int main(int argc, char **argv)
  47. {
  48.   int error;
  49.   my_bool first_argument_uses_wildcards=0;
  50.   char *wild;
  51.   MYSQL mysql;
  52.   MY_INIT(argv[0]);
  53.   load_defaults("my",load_default_groups,&argc,&argv);
  54.   get_options(&argc,&argv);
  55.   wild=0;
  56.   if (argc)
  57.   {
  58.     char *pos= argv[argc-1], *to;
  59.     for (to= pos ; *pos ; pos++, to++)
  60.     {
  61.       switch (*pos)
  62.       {
  63.       case '*':
  64. *pos= '%';
  65. first_argument_uses_wildcards= 1;
  66. break;
  67.       case '?':
  68. *pos= '_';
  69. first_argument_uses_wildcards= 1;
  70. break;
  71.       case '%':
  72.       case '_':
  73. first_argument_uses_wildcards= 1;
  74. break;
  75.       case '\':
  76. pos++;
  77.       default: break;
  78.       }
  79.       *to= *pos;
  80.     }    
  81.     *to= *pos; /* just to copy a ''  if '\' was used */
  82.   }
  83.   if (first_argument_uses_wildcards)
  84.     wild= argv[--argc];
  85.   else if (argc == 3) /* We only want one field */
  86.     wild= argv[--argc];
  87.   if (argc > 2)
  88.   {
  89.     fprintf(stderr,"%s: Too many argumentsn",my_progname);
  90.     exit(1);
  91.   }
  92.   mysql_init(&mysql);
  93.   if (opt_compress)
  94.     mysql_options(&mysql,MYSQL_OPT_COMPRESS,NullS);
  95. #ifdef HAVE_OPENSSL
  96.   if (opt_use_ssl)
  97.     mysql_ssl_set(&mysql, opt_ssl_key, opt_ssl_cert, opt_ssl_ca,
  98.   opt_ssl_capath, opt_ssl_cipher);
  99. #endif
  100.   if (opt_protocol)
  101.     mysql_options(&mysql,MYSQL_OPT_PROTOCOL,(char*)&opt_protocol);
  102. #ifdef HAVE_SMEM
  103.   if (shared_memory_base_name)
  104.     mysql_options(&mysql,MYSQL_SHARED_MEMORY_BASE_NAME,shared_memory_base_name);
  105. #endif
  106.   mysql_options(&mysql, MYSQL_SET_CHARSET_NAME, default_charset);
  107.   if (!(mysql_real_connect(&mysql,host,user,opt_password,
  108.    (first_argument_uses_wildcards) ? "" : argv[0],opt_mysql_port,opt_mysql_unix_port,
  109.    0)))
  110.   {
  111.     fprintf(stderr,"%s: %sn",my_progname,mysql_error(&mysql));
  112.     exit(1);
  113.   }
  114.   switch (argc)
  115.   {
  116.   case 0:  error=list_dbs(&mysql,wild); break;
  117.   case 1:
  118.     if (opt_status)
  119.       error=list_table_status(&mysql,argv[0],wild);
  120.     else
  121.       error=list_tables(&mysql,argv[0],wild);
  122.     break;
  123.   default:
  124.     if (opt_status && ! wild)
  125.       error=list_table_status(&mysql,argv[0],argv[1]);
  126.     else
  127.       error=list_fields(&mysql,argv[0],argv[1],wild);
  128.     break;
  129.   }
  130.   mysql_close(&mysql); /* Close & free connection */
  131.   if (opt_password)
  132.     my_free(opt_password,MYF(0));
  133. #ifdef HAVE_SMEM
  134.   my_free(shared_memory_base_name,MYF(MY_ALLOW_ZERO_PTR));
  135. #endif
  136.   my_end(0);
  137.   exit(error ? 1 : 0);
  138.   return 0; /* No compiler warnings */
  139. }
  140. static struct my_option my_long_options[] =
  141. {
  142. #ifdef __NETWARE__
  143.   {"auto-close", OPT_AUTO_CLOSE, "Auto close the screen on exit for Netware.",
  144.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  145. #endif
  146.   {"character-sets-dir", 'c', "Directory where character sets are.",
  147.    (gptr*) &charsets_dir, (gptr*) &charsets_dir, 0, GET_STR, REQUIRED_ARG, 0,
  148.    0, 0, 0, 0, 0},
  149.   {"default-character-set", OPT_DEFAULT_CHARSET,
  150.    "Set the default character set.", (gptr*) &default_charset,
  151.    (gptr*) &default_charset, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  152.   {"compress", 'C', "Use compression in server/client protocol.",
  153.    (gptr*) &opt_compress, (gptr*) &opt_compress, 0, GET_BOOL, NO_ARG, 0, 0, 0,
  154.    0, 0, 0},
  155.   {"debug", '#', "Output debug log. Often this is 'd:t:o,filename'.",
  156.    0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
  157.   {"help", '?', "Display this help and exit.", 0, 0, 0, GET_NO_ARG, NO_ARG,
  158.    0, 0, 0, 0, 0, 0},
  159.   {"host", 'h', "Connect to host.", (gptr*) &host, (gptr*) &host, 0, GET_STR,
  160.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  161.   {"status", 'i', "Shows a lot of extra information about each table.",
  162.    (gptr*) &opt_status, (gptr*) &opt_status, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0,
  163.    0, 0},
  164.   {"keys", 'k', "Show keys for table.", (gptr*) &opt_show_keys,
  165.    (gptr*) &opt_show_keys, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
  166.   {"password", 'p',
  167.    "Password to use when connecting to server. If password is not given it's asked from the tty.",
  168.    0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
  169.   {"port", 'P', "Port number to use for connection.", (gptr*) &opt_mysql_port,
  170.    (gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, MYSQL_PORT, 0, 0, 0, 0,
  171.    0},
  172. #ifdef __WIN__
  173.   {"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
  174.    NO_ARG, 0, 0, 0, 0, 0, 0},
  175. #endif
  176.   {"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).",
  177.    0, 0, 0, GET_STR,  REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  178. #ifdef HAVE_SMEM
  179.   {"shared-memory-base-name", OPT_SHARED_MEMORY_BASE_NAME,
  180.    "Base name of shared memory.", (gptr*) &shared_memory_base_name, (gptr*) &shared_memory_base_name,
  181.    0, GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  182. #endif
  183.   {"socket", 'S', "Socket file to use for connection.",
  184.    (gptr*) &opt_mysql_unix_port, (gptr*) &opt_mysql_unix_port, 0, GET_STR,
  185.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  186. #include <sslopt-longopts.h>
  187. #ifndef DONT_ALLOW_USER_CHANGE
  188.   {"user", 'u', "User for login if not current user.", (gptr*) &user,
  189.    (gptr*) &user, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  190. #endif
  191.   {"verbose", 'v',
  192.    "More verbose output; You can use this multiple times to get even more verbose output.",
  193.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  194.   {"version", 'V', "Output version information and exit.", 0, 0, 0, GET_NO_ARG,
  195.    NO_ARG, 0, 0, 0, 0, 0, 0},
  196.   {0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
  197. };
  198.   
  199. #include <help_start.h>
  200. static void print_version(void)
  201. {
  202.   printf("%s  Ver %s Distrib %s, for %s (%s)n",my_progname,SHOW_VERSION,
  203.  MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
  204.   NETWARE_SET_SCREEN_MODE(1);
  205. }
  206. static void usage(void)
  207. {
  208.   print_version();
  209.   puts("Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB");
  210.   puts("This software comes with ABSOLUTELY NO WARRANTY. This is free software,nand you are welcome to modify and redistribute it under the GPL licensen");
  211.   puts("Shows the structure of a mysql database (databases,tables and columns)n");
  212.   printf("Usage: %s [OPTIONS] [database [table [column]]]n",my_progname);
  213.   puts("n
  214. If last argument contains a shell or SQL wildcard (*,?,% or _) then onlyn
  215. what's matched by the wildcard is shown.n
  216. If no database is given then all matching databases are shown.n
  217. If no table is given then all matching tables in database are shownn
  218. If no column is given then all matching columns and columntypes in tablen
  219. are shown");
  220.   print_defaults("my",load_default_groups);
  221.   my_print_help(my_long_options);
  222.   my_print_variables(my_long_options);
  223. }
  224. #include <help_end.h>
  225. static my_bool
  226. get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
  227.        char *argument)
  228. {
  229.   switch(optid) {
  230. #ifdef __NETWARE__
  231.   case OPT_AUTO_CLOSE:
  232.     setscreenmode(SCR_AUTOCLOSE_ON_EXIT);
  233.     break;
  234. #endif
  235.   case 'v':
  236.     opt_verbose++;
  237.     break;
  238.   case 'p':
  239.     if (argument)
  240.     {
  241.       char *start=argument;
  242.       my_free(opt_password,MYF(MY_ALLOW_ZERO_PTR));
  243.       opt_password=my_strdup(argument,MYF(MY_FAE));
  244.       while (*argument) *argument++= 'x'; /* Destroy argument */
  245.       if (*start)
  246. start[1]=0; /* Cut length of argument */
  247.       tty_password= 0;
  248.     }
  249.     else
  250.       tty_password=1;
  251.     break;
  252.   case 'W':
  253. #ifdef __WIN__
  254.     opt_protocol = MYSQL_PROTOCOL_PIPE;
  255. #endif
  256.     break;
  257.   case OPT_MYSQL_PROTOCOL:
  258.   {
  259.     if ((opt_protocol= find_type(argument, &sql_protocol_typelib,0)) <= 0)
  260.     {
  261.       fprintf(stderr, "Unknown option to protocol: %sn", argument);
  262.       exit(1);
  263.     }
  264.     break;
  265.   }
  266.   case '#':
  267.     DBUG_PUSH(argument ? argument : "d:t:o");
  268.     break;
  269. #include <sslopt-case.h>
  270.   case 'V':
  271.     print_version();
  272.     exit(0);
  273.     break;
  274.   case '?':
  275.   case 'I': /* Info */
  276.     usage();
  277.     exit(0);
  278.   }
  279.   return 0;
  280. }
  281. static void
  282. get_options(int *argc,char ***argv)
  283. {
  284.   int ho_error;
  285.   if ((ho_error=handle_options(argc, argv, my_long_options, get_one_option)))
  286.     exit(ho_error);
  287.   
  288.   if (tty_password)
  289.     opt_password=get_tty_password(NullS);
  290.   return;
  291. }
  292. static int
  293. list_dbs(MYSQL *mysql,const char *wild)
  294. {
  295.   const char *header;
  296.   uint length, counter = 0;
  297.   ulong rowcount = 0L;
  298.   char tables[NAME_LEN+1], rows[NAME_LEN+1];
  299.   char query[255];
  300.   MYSQL_FIELD *field;
  301.   MYSQL_RES *result;
  302.   MYSQL_ROW row, trow, rrow;
  303.   if (!(result=mysql_list_dbs(mysql,wild)))
  304.   {
  305.     fprintf(stderr,"%s: Cannot list databases: %sn",my_progname,
  306.     mysql_error(mysql));
  307.     return 1;
  308.   }
  309.   if (wild)
  310.     printf("Wildcard: %sn",wild);
  311.   header="Databases";
  312.   length=(uint) strlen(header);
  313.   field=mysql_fetch_field(result);
  314.   if (length < field->max_length)
  315.     length=field->max_length;
  316.   if (!opt_verbose)
  317.     print_header(header,length,NullS);
  318.   else if (opt_verbose == 1)
  319.     print_header(header,length,"Tables",6,NullS);
  320.   else
  321.     print_header(header,length,"Tables",6,"Total Rows",12,NullS);
  322.   while ((row = mysql_fetch_row(result)))
  323.   {
  324.     counter++;
  325.     if (opt_verbose)
  326.     {
  327.       /*
  328.        *  Original code by MG16373;  Slightly modified by Monty.
  329.        *  Print now the count of tables and rows for each database.
  330.        */
  331.       if (!(mysql_select_db(mysql,row[0])))
  332.       {
  333. MYSQL_RES *tresult = mysql_list_tables(mysql,(char*)NULL);
  334. if (mysql_affected_rows(mysql) > 0)
  335. {
  336.   sprintf(tables,"%6lu",(ulong) mysql_affected_rows(mysql));
  337.   rowcount = 0;
  338.   if (opt_verbose > 1)
  339.   {
  340.     while ((trow = mysql_fetch_row(tresult)))
  341.     {
  342.       sprintf(query,"SELECT COUNT(*) FROM `%s`",trow[0]);
  343.       if (!(mysql_query(mysql,query)))
  344.       {
  345. MYSQL_RES *rresult;
  346. if ((rresult = mysql_store_result(mysql)))
  347. {
  348.   rrow = mysql_fetch_row(rresult);
  349.   rowcount += (ulong) strtoull(rrow[0], (char**) 0, 10);
  350.   mysql_free_result(rresult);
  351. }
  352.       }
  353.     }
  354.     sprintf(rows,"%12lu",rowcount);
  355.   }
  356. }
  357. else
  358. {
  359.   sprintf(tables,"%6d",0);
  360.   sprintf(rows,"%12d",0);
  361. }
  362. mysql_free_result(tresult);
  363.       }
  364.       else
  365.       {
  366. strmov(tables,"N/A");
  367. strmov(rows,"N/A");
  368.       }
  369.     }
  370.     if (!opt_verbose)
  371.       print_row(row[0],length,0);
  372.     else if (opt_verbose == 1)
  373.       print_row(row[0],length,tables,6,NullS);
  374.     else
  375.       print_row(row[0],length,tables,6,rows,12,NullS);
  376.   }
  377.   print_trailer(length,
  378. (opt_verbose > 0 ? 6 : 0),
  379. (opt_verbose > 1 ? 12 :0),
  380. 0);
  381.   if (counter && opt_verbose)
  382.     printf("%u row%s in set.n",counter,(counter > 1) ? "s" : "");
  383.   mysql_free_result(result);
  384.   return 0;
  385. }
  386. static int
  387. list_tables(MYSQL *mysql,const char *db,const char *table)
  388. {
  389.   const char *header;
  390.   uint head_length, counter = 0;
  391.   char query[255], rows[64], fields[16];
  392.   MYSQL_FIELD *field;
  393.   MYSQL_RES *result;
  394.   MYSQL_ROW row, rrow;
  395.   if (mysql_select_db(mysql,db))
  396.   {
  397.     fprintf(stderr,"%s: Cannot connect to db %s: %sn",my_progname,db,
  398.     mysql_error(mysql));
  399.     return 1;
  400.   }
  401.   if (!(result=mysql_list_tables(mysql,table)))
  402.   {
  403.     fprintf(stderr,"%s: Cannot list tables in %s: %sn",my_progname,db,
  404.     mysql_error(mysql));
  405.     exit(1);
  406.   }
  407.   printf("Database: %s",db);
  408.   if (table)
  409.     printf("  Wildcard: %s",table);
  410.   putchar('n');
  411.   header="Tables";
  412.   head_length=(uint) strlen(header);
  413.   field=mysql_fetch_field(result);
  414.   if (head_length < field->max_length)
  415.     head_length=field->max_length;
  416.   if (!opt_verbose)
  417.     print_header(header,head_length,NullS);
  418.   else if (opt_verbose == 1)
  419.     print_header(header,head_length,"Columns",8,NullS);
  420.   else
  421.     print_header(header,head_length,"Columns",8, "Total Rows",10,NullS);
  422.   while ((row = mysql_fetch_row(result)))
  423.   {
  424.     /*
  425.      *   Modified by MG16373
  426.      *   Print now the count of rows for each table.
  427.      */
  428.     counter++;
  429.     if (opt_verbose > 0)
  430.     {
  431.       if (!(mysql_select_db(mysql,db)))
  432.       {
  433. MYSQL_RES *rresult = mysql_list_fields(mysql,row[0],NULL);
  434. ulong rowcount=0L;
  435. if (!rresult)
  436. {
  437.   strmov(fields,"N/A");
  438.   strmov(rows,"N/A");
  439. }
  440. else
  441. {
  442.   sprintf(fields,"%8u",(uint) mysql_num_fields(rresult));
  443.   mysql_free_result(rresult);
  444.   if (opt_verbose > 1)
  445.   {
  446.     sprintf(query,"SELECT COUNT(*) FROM `%s`",row[0]);
  447.     if (!(mysql_query(mysql,query)))
  448.     {
  449.       if ((rresult = mysql_store_result(mysql)))
  450.       {
  451. rrow = mysql_fetch_row(rresult);
  452. rowcount += (unsigned long) strtoull(rrow[0], (char**) 0, 10);
  453. mysql_free_result(rresult);
  454.       }
  455.       sprintf(rows,"%10lu",rowcount);
  456.     }
  457.     else
  458.       sprintf(rows,"%10d",0);
  459.   }
  460. }
  461.       }
  462.       else
  463.       {
  464. strmov(fields,"N/A");
  465. strmov(rows,"N/A");
  466.       }
  467.     }
  468.     if (!opt_verbose)
  469.       print_row(row[0],head_length,NullS);
  470.     else if (opt_verbose == 1)
  471.       print_row(row[0],head_length, fields,8, NullS);
  472.     else 
  473.       print_row(row[0],head_length, fields,8, rows,10, NullS);
  474.   }
  475.   print_trailer(head_length,
  476. (opt_verbose > 0 ? 8 : 0),
  477. (opt_verbose > 1 ? 10 :0),
  478. 0);
  479.   if (counter && opt_verbose)
  480.     printf("%u row%s in set.nn",counter,(counter > 1) ? "s" : "");
  481.   mysql_free_result(result);
  482.   return 0;
  483. }
  484. static int
  485. list_table_status(MYSQL *mysql,const char *db,const char *wild)
  486. {
  487.   char query[1024],*end;
  488.   MYSQL_RES *result;
  489.   MYSQL_ROW row;
  490.   end=strxmov(query,"show table status from ",db,NullS);
  491.   if (wild && wild[0])
  492.     strxmov(end," like '",wild,"'",NullS);
  493.   if (mysql_query(mysql,query) || !(result=mysql_store_result(mysql)))
  494.   {
  495.     fprintf(stderr,"%s: Cannot get status for db: %s, table: %s: %sn",
  496.     my_progname,db,wild ? wild : "",mysql_error(mysql));
  497.     if (mysql_errno(mysql) == ER_PARSE_ERROR)
  498.       fprintf(stderr,"This error probably means that your MySQL server doesn't support then'show table status' command.n");
  499.     return 1;
  500.   }
  501.   printf("Database: %s",db);
  502.   if (wild)
  503.     printf("  Wildcard: %s",wild);
  504.   putchar('n');
  505.   print_res_header(result);
  506.   while ((row=mysql_fetch_row(result)))
  507.     print_res_row(result,row);
  508.   print_res_top(result);
  509.   mysql_free_result(result);
  510.   return 0;
  511. }
  512. /*
  513. ** list fields uses field interface as an example of how to parse
  514. ** a MYSQL FIELD
  515. */
  516. static int
  517. list_fields(MYSQL *mysql,const char *db,const char *table,
  518.     const char *wild)
  519. {
  520.   char query[1024],*end;
  521.   MYSQL_RES *result;
  522.   MYSQL_ROW row;
  523.   if (mysql_select_db(mysql,db))
  524.   {
  525.     fprintf(stderr,"%s: Cannot connect to db: %s: %sn",my_progname,db,
  526.     mysql_error(mysql));
  527.     return 1;
  528.   }
  529.   end=strmov(strmov(strmov(query,"show /*!32332 FULL */ columns from `"),table),"`");
  530.   if (wild && wild[0])
  531.     strxmov(end," like '",wild,"'",NullS);
  532.   if (mysql_query(mysql,query) || !(result=mysql_store_result(mysql)))
  533.   {
  534.     fprintf(stderr,"%s: Cannot list columns in db: %s, table: %s: %sn",
  535.     my_progname,db,table,mysql_error(mysql));
  536.     return 1;
  537.   }
  538.   printf("Database: %s  Table: %s  Rows: %lu", db,table,
  539.  (ulong) mysql->extra_info);
  540.   if (wild && wild[0])
  541.     printf("  Wildcard: %s",wild);
  542.   putchar('n');
  543.   print_res_header(result);
  544.   while ((row=mysql_fetch_row(result)))
  545.     print_res_row(result,row);
  546.   print_res_top(result);
  547.   if (opt_show_keys)
  548.   {
  549.     end=strmov(strmov(strmov(query,"show keys from `"),table),"`");
  550.     if (mysql_query(mysql,query) || !(result=mysql_store_result(mysql)))
  551.     {
  552.       fprintf(stderr,"%s: Cannot list keys in db: %s, table: %s: %sn",
  553.       my_progname,db,table,mysql_error(mysql));
  554.       return 1;
  555.     }
  556.     if (mysql_num_rows(result))
  557.     {
  558.       print_res_header(result);
  559.       while ((row=mysql_fetch_row(result)))
  560. print_res_row(result,row);
  561.       print_res_top(result);
  562.     }
  563.     else
  564.       puts("Table has no keys");
  565.   }
  566.   mysql_free_result(result);
  567.   return 0;
  568. }
  569. /*****************************************************************************
  570. ** General functions to print a nice ascii-table from data
  571. *****************************************************************************/
  572. static void
  573. print_header(const char *header,uint head_length,...)
  574. {
  575.   va_list args;
  576.   uint length,i,str_length,pre_space;
  577.   const char *field;
  578.   va_start(args,head_length);
  579.   putchar('+');
  580.   field=header; length=head_length;
  581.   for (;;)
  582.   {
  583.     for (i=0 ; i < length+2 ; i++)
  584.       putchar('-');
  585.     putchar('+');
  586.     if (!(field=va_arg(args,my_string)))
  587.       break;
  588.     length=va_arg(args,uint);
  589.   }
  590.   va_end(args);
  591.   putchar('n');
  592.   va_start(args,head_length);
  593.   field=header; length=head_length;
  594.   putchar('|');
  595.   for (;;)
  596.   {
  597.     str_length=(uint) strlen(field);
  598.     if (str_length > length)
  599.       str_length=length+1;
  600.     pre_space=(uint) (((int) length-(int) str_length)/2)+1;
  601.     for (i=0 ; i < pre_space ; i++)
  602.       putchar(' ');
  603.     for (i = 0 ; i < str_length ; i++)
  604.       putchar(field[i]);
  605.     length=length+2-str_length-pre_space;
  606.     for (i=0 ; i < length ; i++)
  607.       putchar(' ');
  608.     putchar('|');
  609.     if (!(field=va_arg(args,my_string)))
  610.       break;
  611.     length=va_arg(args,uint);
  612.   }
  613.   va_end(args);
  614.   putchar('n');
  615.   va_start(args,head_length);
  616.   putchar('+');
  617.   field=header; length=head_length;
  618.   for (;;)
  619.   {
  620.     for (i=0 ; i < length+2 ; i++)
  621.       putchar('-');
  622.     putchar('+');
  623.     if (!(field=va_arg(args,my_string)))
  624.       break;
  625.     length=va_arg(args,uint);
  626.   }
  627.   va_end(args);
  628.   putchar('n');
  629. }
  630. static void
  631. print_row(const char *header,uint head_length,...)
  632. {
  633.   va_list args;
  634.   const char *field;
  635.   uint i,length,field_length;
  636.   va_start(args,head_length);
  637.   field=header; length=head_length;
  638.   for (;;)
  639.   {
  640.     putchar('|');
  641.     putchar(' ');
  642.     fputs(field,stdout);
  643.     field_length=(uint) strlen(field);
  644.     for (i=field_length ; i <= length ; i++)
  645.       putchar(' ');
  646.     if (!(field=va_arg(args,my_string)))
  647.       break;
  648.     length=va_arg(args,uint);
  649.   }
  650.   va_end(args);
  651.   putchar('|');
  652.   putchar('n');
  653. }
  654. static void
  655. print_trailer(uint head_length,...)
  656. {
  657.   va_list args;
  658.   uint length,i;
  659.   va_start(args,head_length);
  660.   length=head_length;
  661.   putchar('+');
  662.   for (;;)
  663.   {
  664.     for (i=0 ; i < length+2 ; i++)
  665.       putchar('-');
  666.     putchar('+');
  667.     if (!(length=va_arg(args,uint)))
  668.       break;
  669.   }
  670.   va_end(args);
  671.   putchar('n');
  672. }
  673. static void print_res_header(MYSQL_RES *result)
  674. {
  675.   MYSQL_FIELD *field;
  676.   print_res_top(result);
  677.   mysql_field_seek(result,0);
  678.   putchar('|');
  679.   while ((field = mysql_fetch_field(result)))
  680.   {
  681.     printf(" %-*s|",(int) field->max_length+1,field->name);
  682.   }
  683.   putchar('n');
  684.   print_res_top(result);
  685. }
  686. static void print_res_top(MYSQL_RES *result)
  687. {
  688.   uint i,length;
  689.   MYSQL_FIELD *field;
  690.   putchar('+');
  691.   mysql_field_seek(result,0);
  692.   while((field = mysql_fetch_field(result)))
  693.   {
  694.     if ((length=(uint) strlen(field->name)) > field->max_length)
  695.       field->max_length=length;
  696.     else
  697.       length=field->max_length;
  698.     for (i=length+2 ; i--> 0 ; )
  699.       putchar('-');
  700.     putchar('+');
  701.   }
  702.   putchar('n');
  703. }
  704. static void print_res_row(MYSQL_RES *result,MYSQL_ROW cur)
  705. {
  706.   uint i,length;
  707.   MYSQL_FIELD *field;
  708.   putchar('|');
  709.   mysql_field_seek(result,0);
  710.   for (i=0 ; i < mysql_num_fields(result); i++)
  711.   {
  712.     field = mysql_fetch_field(result);
  713.     length=field->max_length;
  714.     printf(" %-*s|",length+1,cur[i] ? (char*) cur[i] : "");
  715.   }
  716.   putchar('n');
  717. }