diff options
author | Konstantin Osipov <kostja@sun.com> | 2009-10-16 00:53:21 +0400 |
---|---|---|
committer | Konstantin Osipov <kostja@sun.com> | 2009-10-16 00:53:21 +0400 |
commit | c8a83977d500a4db6024e66ee99c16690965f3bc (patch) | |
tree | 9c75d70e687ff8880f74bfdc6ae4c5798192fcdb /include/mysql.h | |
parent | 9b41c7532d18b04d2f430932ad916886c77fbff6 (diff) | |
download | mariadb-git-c8a83977d500a4db6024e66ee99c16690965f3bc.tar.gz |
Backport of:
---------------------------------------------------------------------
revno: 2476.980.1
committer: msvensson@pilot.mysql.com
timestamp: Wed 2007-10-31 18:17:54 +0100
message:
Bug#31954 Remove undocumented mysql_manager_* C API functions and
mysqlmanager (old)
- Remove the mysql_manager* functions, struct and defines
Diffstat (limited to 'include/mysql.h')
-rw-r--r-- | include/mysql.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/include/mysql.h b/include/mysql.h index 70faf3cb2c1..d782c033784 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -333,35 +333,12 @@ typedef struct st_mysql_res { void *extension; } MYSQL_RES; -#define MAX_MYSQL_MANAGER_ERR 256 -#define MAX_MYSQL_MANAGER_MSG 256 - -#define MANAGER_OK 200 -#define MANAGER_INFO 250 -#define MANAGER_ACCESS 401 -#define MANAGER_CLIENT_ERR 450 -#define MANAGER_INTERNAL_ERR 500 #if !defined(MYSQL_SERVER) && !defined(MYSQL_CLIENT) #define MYSQL_CLIENT #endif -typedef struct st_mysql_manager -{ - NET net; - char *host, *user, *passwd; - char *net_buf, *net_buf_pos, *net_data_end; - unsigned int port; - int cmd_status; - int last_errno; - int net_buf_size; - my_bool free_me; - my_bool eof; - char last_error[MAX_MYSQL_MANAGER_ERR]; - void *extension; -} MYSQL_MANAGER; - typedef struct st_mysql_parameters { unsigned long *p_max_allowed_packet; @@ -562,18 +539,6 @@ void STDCALL mysql_debug(const char *debug); void STDCALL myodbc_remove_escape(MYSQL *mysql,char *name); unsigned int STDCALL mysql_thread_safe(void); my_bool STDCALL mysql_embedded(void); -MYSQL_MANAGER* STDCALL mysql_manager_init(MYSQL_MANAGER* con); -MYSQL_MANAGER* STDCALL mysql_manager_connect(MYSQL_MANAGER* con, - const char* host, - const char* user, - const char* passwd, - unsigned int port); -void STDCALL mysql_manager_close(MYSQL_MANAGER* con); -int STDCALL mysql_manager_command(MYSQL_MANAGER* con, - const char* cmd, int cmd_len); -int STDCALL mysql_manager_fetch_line(MYSQL_MANAGER* con, - char* res_buf, - int res_buf_size); my_bool STDCALL mysql_read_query_result(MYSQL *mysql); |