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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program 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
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. extern uint mysql_port;
  17. extern my_string mysql_unix_port;
  18. #define CLIENT_CAPABILITIES (CLIENT_LONG_PASSWORD | CLIENT_LONG_FLAG |   
  19.                              CLIENT_TRANSACTIONS | 
  20.      CLIENT_PROTOCOL_41 | CLIENT_SECURE_CONNECTION)
  21. sig_handler pipe_sig_handler(int sig);
  22. void read_user_name(char *name);
  23. my_bool handle_local_infile(MYSQL *mysql, const char *net_filename);
  24. /*
  25.   Let the user specify that we don't want SIGPIPE;  This doesn't however work
  26.   with threaded applications as we can have multiple read in progress.
  27. */
  28. #if !defined(__WIN__) && defined(SIGPIPE) && !defined(THREAD)
  29. #define init_sigpipe_variables  sig_return old_signal_handler=(sig_return) 0;
  30. #define set_sigpipe(mysql)     if ((mysql)->client_flag & CLIENT_IGNORE_SIGPIPE) old_signal_handler=signal(SIGPIPE,pipe_sig_handler)
  31. #define reset_sigpipe(mysql) if ((mysql)->client_flag & CLIENT_IGNORE_SIGPIPE) signal(SIGPIPE,old_signal_handler);
  32. #else
  33. #define init_sigpipe_variables
  34. #define set_sigpipe(mysql)
  35. #define reset_sigpipe(mysql)
  36. #endif
  37. void mysql_read_default_options(struct st_mysql_options *options,
  38. const char *filename,const char *group);
  39. void mysql_detach_stmt_list(LIST **stmt_list);
  40. MYSQL * STDCALL
  41. cli_mysql_real_connect(MYSQL *mysql,const char *host, const char *user,
  42.        const char *passwd, const char *db,
  43.        uint port, const char *unix_socket,ulong client_flag);
  44. void cli_mysql_close(MYSQL *mysql);
  45. MYSQL_FIELD * cli_list_fields(MYSQL *mysql);
  46. my_bool cli_read_prepare_result(MYSQL *mysql, MYSQL_STMT *stmt);
  47. MYSQL_DATA * cli_read_rows(MYSQL *mysql,MYSQL_FIELD *mysql_fields,
  48.    uint fields);
  49. int cli_stmt_execute(MYSQL_STMT *stmt);
  50. int cli_read_binary_rows(MYSQL_STMT *stmt);
  51. int cli_unbuffered_fetch(MYSQL *mysql, char **row);
  52. const char * cli_read_statistics(MYSQL *mysql);
  53. int cli_read_change_user_result(MYSQL *mysql, char *buff, const char *passwd);
  54. #ifdef EMBEDDED_LIBRARY
  55. int init_embedded_server(int argc, char **argv, char **groups);
  56. void end_embedded_server();
  57. #endif /*EMBEDDED_LIBRARY*/