test_charset.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. #include <global.h>
  18. #include <m_ctype.h>
  19. #include <my_sys.h>
  20. #include <mysql_version.h>
  21. #include <stdio.h>
  22. extern void _print_csinfo();
  23. int main(int argc, char **argv) {
  24.   const char *the_set = MYSQL_CHARSET;
  25.   char *cs_list;
  26.   int argcnt = 1;
  27.   my_init();
  28.   if (argc > argcnt && argv[argcnt][0] == '-' && argv[argcnt][1] == '#')
  29.     DBUG_PUSH(argv[argcnt++]+2);
  30.   if (argc > argcnt)
  31.     the_set = argv[argcnt++];
  32.   if (argc > argcnt)
  33.     charsets_dir = argv[argcnt++];
  34.   if (set_default_charset_by_name(the_set, MYF(MY_WME)))
  35.     return 1;
  36.   puts("CHARSET INFO:");
  37.   _print_csinfo(default_charset_info);
  38.   fflush(stdout);
  39.   cs_list = list_charsets(MYF(MY_COMPILED_SETS | MY_CONFIG_SETS));
  40.   printf("LIST OF CHARSETS (compiled + *.conf):n%sn", cs_list);
  41.   free(cs_list);
  42.   cs_list = list_charsets(MYF(MY_INDEX_SETS | MY_LOADED_SETS));
  43.   printf("LIST OF CHARSETS (index + loaded):n%sn", cs_list);
  44.   free(cs_list);
  45.   return 0;
  46. }