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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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. /* Common defines for all clients */
  14. #include <my_global.h>
  15. #include <my_sys.h>
  16. #include <m_string.h>
  17. #include <mysql.h>
  18. #include <mysql_embed.h>
  19. #include <errmsg.h>
  20. #include <my_getopt.h>
  21. /* We have to define 'enum options' identical in all files to keep OS2 happy */
  22. enum options_client
  23. {
  24.   OPT_CHARSETS_DIR=256, OPT_DEFAULT_CHARSET,
  25.   OPT_PAGER, OPT_NOPAGER, OPT_TEE, OPT_NOTEE,
  26.   OPT_LOW_PRIORITY, OPT_AUTO_REPAIR, OPT_COMPRESS,
  27.   OPT_DROP, OPT_LOCKS, OPT_KEYWORDS, OPT_DELAYED, OPT_OPTIMIZE,
  28.   OPT_FTB, OPT_LTB, OPT_ENC, OPT_O_ENC, OPT_ESC, OPT_TABLES,
  29.   OPT_MASTER_DATA, OPT_AUTOCOMMIT, OPT_AUTO_REHASH,
  30.   OPT_LINE_NUMBERS, OPT_COLUMN_NAMES, OPT_CONNECT_TIMEOUT,
  31.   OPT_MAX_ALLOWED_PACKET, OPT_NET_BUFFER_LENGTH,
  32.   OPT_SELECT_LIMIT, OPT_MAX_JOIN_SIZE, OPT_SSL_SSL,
  33.   OPT_SSL_KEY, OPT_SSL_CERT, OPT_SSL_CA, OPT_SSL_CAPATH,
  34.   OPT_SSL_CIPHER, OPT_SHUTDOWN_TIMEOUT, OPT_LOCAL_INFILE,
  35.   OPT_DELETE_MASTER_LOGS, OPT_COMPACT,
  36.   OPT_PROMPT, OPT_IGN_LINES,OPT_TRANSACTION,OPT_MYSQL_PROTOCOL,
  37.   OPT_SHARED_MEMORY_BASE_NAME, OPT_FRM, OPT_SKIP_OPTIMIZATION,
  38.   OPT_COMPATIBLE, OPT_RECONNECT, OPT_DELIMITER, OPT_SECURE_AUTH,
  39.   OPT_OPEN_FILES_LIMIT, OPT_SET_CHARSET, OPT_CREATE_OPTIONS,
  40.   OPT_START_POSITION, OPT_STOP_POSITION, OPT_START_DATETIME, OPT_STOP_DATETIME,
  41.   OPT_SIGINT_IGNORE, OPT_HEXBLOB, OPT_ORDER_BY_PRIMARY
  42. #ifdef HAVE_NDBCLUSTER_DB
  43.   ,OPT_NDBCLUSTER,OPT_NDB_CONNECTSTRING
  44. #endif
  45.   ,OPT_IGNORE_TABLE,OPT_INSERT_IGNORE,OPT_DROP_DATABASE,
  46.   OPT_AUTO_CLOSE
  47. };