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

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 const char *unknown_sqlstate;
  17. extern const char *not_error_sqlstate;
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. MYSQL_FIELD *unpack_fields(MYSQL_DATA *data,MEM_ROOT *alloc,uint fields,
  22.    my_bool default_value, uint server_capabilities);
  23. void free_rows(MYSQL_DATA *cur);
  24. void free_old_query(MYSQL *mysql);
  25. void end_server(MYSQL *mysql);
  26. my_bool mysql_reconnect(MYSQL *mysql);
  27. void mysql_read_default_options(struct st_mysql_options *options,
  28. const char *filename,const char *group);
  29. my_bool
  30. cli_advanced_command(MYSQL *mysql, enum enum_server_command command,
  31.      const char *header, ulong header_length,
  32.      const char *arg, ulong arg_length, my_bool skip_check);
  33. void set_stmt_errmsg(MYSQL_STMT * stmt, const char *err, int errcode,
  34.      const char *sqlstate);
  35. void set_mysql_error(MYSQL *mysql, int errcode, const char *sqlstate);
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #define protocol_41(A) ((A)->server_capabilities & CLIENT_PROTOCOL_41)