2006-12-31 01:02:27 +01:00
|
|
|
/* Copyright (C) 2001-2004, 2006 MySQL AB
|
2001-10-02 04:53:00 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2001-10-02 04:53:00 +02:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
|
|
/* Prototypes for the embedded version of MySQL */
|
|
|
|
|
|
|
|
C_MODE_START
|
2004-01-07 18:30:15 +01:00
|
|
|
void lib_connection_phase(NET *net, int phase);
|
2006-06-01 14:06:42 +02:00
|
|
|
void init_embedded_mysql(MYSQL *mysql, int client_flag);
|
|
|
|
void *create_embedded_thd(int client_flag);
|
|
|
|
int check_embedded_connection(MYSQL *mysql, const char *db);
|
2003-09-16 13:06:25 +02:00
|
|
|
void free_old_query(MYSQL *mysql);
|
2004-01-07 18:30:15 +01:00
|
|
|
extern MYSQL_METHODS embedded_methods;
|
2006-02-24 17:34:15 +01:00
|
|
|
|
|
|
|
/* This one is used by embedded library to gather returning data */
|
|
|
|
typedef struct embedded_query_result
|
|
|
|
{
|
|
|
|
MYSQL_ROWS **prev_ptr;
|
|
|
|
unsigned int warning_count, server_status;
|
|
|
|
struct st_mysql_data *next;
|
|
|
|
my_ulonglong affected_rows, insert_id;
|
|
|
|
char info[MYSQL_ERRMSG_SIZE];
|
|
|
|
MYSQL_FIELD *fields_list;
|
|
|
|
unsigned int last_errno;
|
|
|
|
char sqlstate[SQLSTATE_LENGTH+1];
|
|
|
|
} EQR;
|
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
C_MODE_END
|