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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2004 MySQL 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.
  5.    There are special exceptions to the terms and conditions of the GPL as it
  6.    is applied to this software. View the full text of the exception in file
  7.    EXCEPTIONS-CLIENT in the directory of this software distribution.
  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.    You should have received a copy of the GNU General Public License
  13.    along with this program; if not, write to the Free Software
  14.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  15. #include <my_global.h>
  16. #include <my_sys.h>
  17. #include <my_time.h>
  18. #include <mysys_err.h>
  19. #include <m_string.h>
  20. #include <m_ctype.h>
  21. #include "mysql.h"
  22. #include "mysql_version.h"
  23. #include "mysqld_error.h"
  24. #include "errmsg.h"
  25. #include <violite.h>
  26. #include <sys/stat.h>
  27. #include <signal.h>
  28. #include <time.h>
  29. #ifdef  HAVE_PWD_H
  30. #include <pwd.h>
  31. #endif
  32. #if !defined(MSDOS) && !defined(__WIN__)
  33. #include <sys/socket.h>
  34. #include <netinet/in.h>
  35. #include <arpa/inet.h>
  36. #include <netdb.h>
  37. #ifdef HAVE_SELECT_H
  38. #include <select.h>
  39. #endif
  40. #ifdef HAVE_SYS_SELECT_H
  41. #include <sys/select.h>
  42. #endif
  43. #endif /* !defined(MSDOS) && !defined(__WIN__) */
  44. #ifdef HAVE_POLL
  45. #include <sys/poll.h>
  46. #endif
  47. #ifdef HAVE_SYS_UN_H
  48. #include <sys/un.h>
  49. #endif
  50. #if defined(THREAD) && !defined(__WIN__)
  51. #include <my_pthread.h> /* because of signal() */
  52. #endif
  53. #ifndef INADDR_NONE
  54. #define INADDR_NONE -1
  55. #endif
  56. #include <sql_common.h>
  57. #include "client_settings.h"
  58. #undef net_buffer_length
  59. #undef max_allowed_packet
  60. ulong  net_buffer_length=8192;
  61. ulong max_allowed_packet= 1024L*1024L*1024L;
  62. ulong net_read_timeout=  CLIENT_NET_READ_TIMEOUT;
  63. ulong net_write_timeout= CLIENT_NET_WRITE_TIMEOUT;
  64. #ifdef EMBEDDED_LIBRARY
  65. #undef net_flush
  66. my_bool net_flush(NET *net);
  67. #endif
  68. #if defined(MSDOS) || defined(__WIN__)
  69. /* socket_errno is defined in my_global.h for all platforms */
  70. #define perror(A)
  71. #else
  72. #include <errno.h>
  73. #define SOCKET_ERROR -1
  74. #endif /* __WIN__ */
  75. /*
  76.   If allowed through some configuration, then this needs to
  77.   be changed
  78. */
  79. #define MAX_LONG_DATA_LENGTH 8192
  80. #define unsigned_field(A) ((A)->flags & UNSIGNED_FLAG)
  81. static void append_wild(char *to,char *end,const char *wild);
  82. sig_handler pipe_sig_handler(int sig);
  83. static my_bool mysql_client_init= 0;
  84. static my_bool org_my_init_done= 0;
  85. /*
  86.   Initialize the MySQL client library
  87.   SYNOPSIS
  88.     mysql_server_init()
  89.   NOTES
  90.     Should be called before doing any other calls to the MySQL
  91.     client library to initialize thread specific variables etc.
  92.     It's called by mysql_init() to ensure that things will work for
  93.     old not threaded applications that doesn't call mysql_server_init()
  94.     directly.
  95.   RETURN
  96.     0  ok
  97.     1  could not initialize environment (out of memory or thread keys)
  98. */
  99. int STDCALL mysql_server_init(int argc __attribute__((unused)),
  100.       char **argv __attribute__((unused)),
  101.       char **groups __attribute__((unused)))
  102. {
  103.   int result= 0;
  104.   if (!mysql_client_init)
  105.   {
  106.     mysql_client_init=1;
  107.     org_my_init_done=my_init_done;
  108.     if (my_init()) /* Will init threads */
  109.       return 1;
  110.     init_client_errs();
  111.     if (!mysql_port)
  112.     {
  113.       mysql_port = MYSQL_PORT;
  114. #ifndef MSDOS
  115.       {
  116. struct servent *serv_ptr;
  117. char *env;
  118. if ((serv_ptr = getservbyname("mysql", "tcp")))
  119.   mysql_port = (uint) ntohs((ushort) serv_ptr->s_port);
  120. if ((env = getenv("MYSQL_TCP_PORT")))
  121.   mysql_port =(uint) atoi(env);
  122.       }
  123. #endif
  124.     }
  125.     if (!mysql_unix_port)
  126.     {
  127.       char *env;
  128. #ifdef __WIN__
  129.       mysql_unix_port = (char*) MYSQL_NAMEDPIPE;
  130. #else
  131.       mysql_unix_port = (char*) MYSQL_UNIX_ADDR;
  132. #endif
  133.       if ((env = getenv("MYSQL_UNIX_PORT")))
  134. mysql_unix_port = env;
  135.     }
  136.     mysql_debug(NullS);
  137. #if defined(SIGPIPE) && !defined(__WIN__) && !defined(__NETWARE__)
  138.     (void) signal(SIGPIPE, SIG_IGN);
  139. #endif
  140. #ifdef EMBEDDED_LIBRARY
  141.     if (argc > -1)
  142.        result= init_embedded_server(argc, argv, groups);
  143. #endif
  144.   }
  145. #ifdef THREAD
  146.   else
  147.     result= (int)my_thread_init();         /* Init if new thread */
  148. #endif
  149.   return result;
  150. }
  151. void STDCALL mysql_server_end()
  152. {
  153. #ifdef EMBEDDED_LIBRARY
  154.   end_embedded_server();
  155. #endif
  156.   /* If library called my_init(), free memory allocated by it */
  157.   if (!org_my_init_done)
  158.   {
  159.     my_end(0);
  160. #ifndef THREAD
  161.   /* Remove TRACING, if enabled by mysql_debug() */
  162.     DBUG_POP();
  163. #endif
  164.   }
  165.   else
  166.     mysql_thread_end();
  167.   free_charsets();
  168.   mysql_client_init= org_my_init_done= 0;
  169. #ifdef EMBEDDED_SERVER
  170.   if (stderror_file)
  171.   {
  172.     fclose(stderror_file);
  173.     stderror_file= 0;
  174.   }
  175. #endif
  176. }
  177. static MYSQL_PARAMETERS mysql_internal_parameters=
  178. {&max_allowed_packet, &net_buffer_length};
  179. MYSQL_PARAMETERS *STDCALL mysql_get_parameters(void)
  180. {
  181.   return &mysql_internal_parameters;
  182. }
  183. my_bool STDCALL mysql_thread_init()
  184. {
  185. #ifdef THREAD
  186.   return my_thread_init();
  187. #else
  188.   return 0;
  189. #endif
  190. }
  191. void STDCALL mysql_thread_end()
  192. {
  193. #ifdef THREAD
  194.   my_thread_end();
  195. #endif
  196. }
  197. /*
  198.   Let the user specify that we don't want SIGPIPE;  This doesn't however work
  199.   with threaded applications as we can have multiple read in progress.
  200. */
  201. static MYSQL* spawn_init(MYSQL* parent, const char* host,
  202.  unsigned int port,
  203.  const char* user,
  204.  const char* passwd);
  205. /*
  206.   Expand wildcard to a sql string
  207. */
  208. static void
  209. append_wild(char *to, char *end, const char *wild)
  210. {
  211.   end-=5; /* Some extra */
  212.   if (wild && wild[0])
  213.   {
  214.     to=strmov(to," like '");
  215.     while (*wild && to < end)
  216.     {
  217.       if (*wild == '\' || *wild == ''')
  218. *to++='\';
  219.       *to++= *wild++;
  220.     }
  221.     if (*wild) /* Too small buffer */
  222.       *to++='%'; /* Nicer this way */
  223.     to[0]=''';
  224.     to[1]=0;
  225.   }
  226. }
  227. /**************************************************************************
  228.   Init debugging if MYSQL_DEBUG environment variable is found
  229. **************************************************************************/
  230. void STDCALL
  231. mysql_debug(const char *debug __attribute__((unused)))
  232. {
  233. #ifndef DBUG_OFF
  234.   char *env;
  235.   if (_db_on_)
  236.     return; /* Already using debugging */
  237.   if (debug)
  238.   {
  239.     DEBUGGER_ON;
  240.     DBUG_PUSH(debug);
  241.   }
  242.   else if ((env = getenv("MYSQL_DEBUG")))
  243.   {
  244.     DEBUGGER_ON;
  245.     DBUG_PUSH(env);
  246. #if !defined(_WINVER) && !defined(WINVER)
  247.     puts("n-------------------------------------------------------");
  248.     puts("MYSQL_DEBUG found. libmysql started with the following:");
  249.     puts(env);
  250.     puts("-------------------------------------------------------n");
  251. #else
  252.     {
  253.       char buff[80];
  254.       buff[sizeof(buff)-1]= 0;
  255.       strxnmov(buff,sizeof(buff)-1,"libmysql: ", env, NullS);
  256.       MessageBox((HWND) 0,"Debugging variable MYSQL_DEBUG used",buff,MB_OK);
  257.     }
  258. #endif
  259.   }
  260. #endif
  261. }
  262. /**************************************************************************
  263.   Close the server connection if we get a SIGPIPE
  264.    ARGSUSED
  265. **************************************************************************/
  266. sig_handler
  267. pipe_sig_handler(int sig __attribute__((unused)))
  268. {
  269.   DBUG_PRINT("info",("Hit by signal %d",sig));
  270. #ifdef DONT_REMEMBER_SIGNAL
  271.   (void) signal(SIGPIPE,pipe_sig_handler);
  272. #endif
  273. }
  274. /* perform query on master */
  275. my_bool STDCALL mysql_master_query(MYSQL *mysql, const char *q,
  276.    unsigned long length)
  277. {
  278.   DBUG_ENTER("mysql_master_query");
  279.   if (mysql_master_send_query(mysql, q, length))
  280.     DBUG_RETURN(1);
  281.   DBUG_RETURN((*mysql->methods->read_query_result)(mysql));
  282. }
  283. my_bool STDCALL mysql_master_send_query(MYSQL *mysql, const char *q,
  284. unsigned long length)
  285. {
  286.   MYSQL *master = mysql->master;
  287.   DBUG_ENTER("mysql_master_send_query");
  288.   if (!master->net.vio && !mysql_real_connect(master,0,0,0,0,0,0,0))
  289.     DBUG_RETURN(1);
  290.   mysql->last_used_con = master;
  291.   DBUG_RETURN(simple_command(master, COM_QUERY, q, length, 1));
  292. }
  293. /* perform query on slave */
  294. my_bool STDCALL mysql_slave_query(MYSQL *mysql, const char *q,
  295.   unsigned long length)
  296. {
  297.   DBUG_ENTER("mysql_slave_query");
  298.   if (mysql_slave_send_query(mysql, q, length))
  299.     DBUG_RETURN(1);
  300.   DBUG_RETURN((*mysql->methods->read_query_result)(mysql));
  301. }
  302. my_bool STDCALL mysql_slave_send_query(MYSQL *mysql, const char *q,
  303.    unsigned long length)
  304. {
  305.   MYSQL* last_used_slave, *slave_to_use = 0;
  306.   DBUG_ENTER("mysql_slave_send_query");
  307.   if ((last_used_slave = mysql->last_used_slave))
  308.     slave_to_use = last_used_slave->next_slave;
  309.   else
  310.     slave_to_use = mysql->next_slave;
  311.   /*
  312.     Next_slave is always safe to use - we have a circular list of slaves
  313.     if there are no slaves, mysql->next_slave == mysql
  314.   */
  315.   mysql->last_used_con = mysql->last_used_slave = slave_to_use;
  316.   if (!slave_to_use->net.vio && !mysql_real_connect(slave_to_use, 0,0,0,
  317.     0,0,0,0))
  318.     DBUG_RETURN(1);
  319.   DBUG_RETURN(simple_command(slave_to_use, COM_QUERY, q, length, 1));
  320. }
  321. /* enable/disable parsing of all queries to decide
  322.    if they go on master or slave */
  323. void STDCALL mysql_enable_rpl_parse(MYSQL* mysql)
  324. {
  325.   mysql->options.rpl_parse = 1;
  326. }
  327. void STDCALL mysql_disable_rpl_parse(MYSQL* mysql)
  328. {
  329.   mysql->options.rpl_parse = 0;
  330. }
  331. /* get the value of the parse flag */
  332. int STDCALL mysql_rpl_parse_enabled(MYSQL* mysql)
  333. {
  334.   return mysql->options.rpl_parse;
  335. }
  336. /*  enable/disable reads from master */
  337. void STDCALL mysql_enable_reads_from_master(MYSQL* mysql)
  338. {
  339.   mysql->options.no_master_reads = 0;
  340. }
  341. void STDCALL mysql_disable_reads_from_master(MYSQL* mysql)
  342. {
  343.   mysql->options.no_master_reads = 1;
  344. }
  345. /* get the value of the master read flag */
  346. my_bool STDCALL mysql_reads_from_master_enabled(MYSQL* mysql)
  347. {
  348.   return !(mysql->options.no_master_reads);
  349. }
  350. /*
  351.   We may get an error while doing replication internals.
  352.   In this case, we add a special explanation to the original
  353.   error
  354. */
  355. static void expand_error(MYSQL* mysql, int error)
  356. {
  357.   char tmp[MYSQL_ERRMSG_SIZE];
  358.   char *p;
  359.   uint err_length;
  360.   strmake(tmp, mysql->net.last_error, MYSQL_ERRMSG_SIZE-1);
  361.   p = strmake(mysql->net.last_error, ER(error), MYSQL_ERRMSG_SIZE-1);
  362.   err_length= (uint) (p - mysql->net.last_error);
  363.   strmake(p, tmp, MYSQL_ERRMSG_SIZE-1 - err_length);
  364.   mysql->net.last_errno = error;
  365. }
  366. /*
  367.   This function assumes we have just called SHOW SLAVE STATUS and have
  368.   read the given result and row
  369. */
  370. static my_bool get_master(MYSQL* mysql, MYSQL_RES* res, MYSQL_ROW row)
  371. {
  372.   MYSQL* master;
  373.   DBUG_ENTER("get_master");
  374.   if (mysql_num_fields(res) < 3)
  375.     DBUG_RETURN(1); /* safety */
  376.   /* use the same username and password as the original connection */
  377.   if (!(master = spawn_init(mysql, row[0], atoi(row[2]), 0, 0)))
  378.     DBUG_RETURN(1);
  379.   mysql->master = master;
  380.   DBUG_RETURN(0);
  381. }
  382. /*
  383.   Assuming we already know that mysql points to a master connection,
  384.   retrieve all the slaves
  385. */
  386. static my_bool get_slaves_from_master(MYSQL* mysql)
  387. {
  388.   MYSQL_RES* res = 0;
  389.   MYSQL_ROW row;
  390.   my_bool error = 1;
  391.   int has_auth_info;
  392.   int port_ind;
  393.   DBUG_ENTER("get_slaves_from_master");
  394.   if (!mysql->net.vio && !mysql_real_connect(mysql,0,0,0,0,0,0,0))
  395.   {
  396.     expand_error(mysql, CR_PROBE_MASTER_CONNECT);
  397.     DBUG_RETURN(1);
  398.   }
  399.   if (mysql_query(mysql, "SHOW SLAVE HOSTS") ||
  400.       !(res = mysql_store_result(mysql)))
  401.   {
  402.     expand_error(mysql, CR_PROBE_SLAVE_HOSTS);
  403.     DBUG_RETURN(1);
  404.   }
  405.   switch (mysql_num_fields(res)) {
  406.   case 5:
  407.     has_auth_info = 0;
  408.     port_ind=2;
  409.     break;
  410.   case 7:
  411.     has_auth_info = 1;
  412.     port_ind=4;
  413.     break;
  414.   default:
  415.     goto err;
  416.   }
  417.   while ((row = mysql_fetch_row(res)))
  418.   {
  419.     MYSQL* slave;
  420.     const char* tmp_user, *tmp_pass;
  421.     if (has_auth_info)
  422.     {
  423.       tmp_user = row[2];
  424.       tmp_pass = row[3];
  425.     }
  426.     else
  427.     {
  428.       tmp_user = mysql->user;
  429.       tmp_pass = mysql->passwd;
  430.     }
  431.     if (!(slave = spawn_init(mysql, row[1], atoi(row[port_ind]),
  432.      tmp_user, tmp_pass)))
  433.       goto err;
  434.     /* Now add slave into the circular linked list */
  435.     slave->next_slave = mysql->next_slave;
  436.     mysql->next_slave = slave;
  437.   }
  438.   error = 0;
  439. err:
  440.   if (res)
  441.     mysql_free_result(res);
  442.   DBUG_RETURN(error);
  443. }
  444. my_bool STDCALL mysql_rpl_probe(MYSQL* mysql)
  445. {
  446.   MYSQL_RES *res= 0;
  447.   MYSQL_ROW row;
  448.   my_bool error= 1;
  449.   DBUG_ENTER("mysql_rpl_probe");
  450.   /*
  451.     First determine the replication role of the server we connected to
  452.     the most reliable way to do this is to run SHOW SLAVE STATUS and see
  453.     if we have a non-empty master host. This is still not fool-proof -
  454.     it is not a sin to have a master that has a dormant slave thread with
  455.     a non-empty master host. However, it is more reliable to check
  456.     for empty master than whether the slave thread is actually running
  457.   */
  458.   if (mysql_query(mysql, "SHOW SLAVE STATUS") ||
  459.       !(res = mysql_store_result(mysql)))
  460.   {
  461.     expand_error(mysql, CR_PROBE_SLAVE_STATUS);
  462.     DBUG_RETURN(1);
  463.   }
  464.   row= mysql_fetch_row(res);
  465.   /*
  466.     Check master host for emptiness/NULL
  467.     For MySQL 4.0 it's enough to check for row[0]
  468.   */
  469.   if (row && row[0] && *(row[0]))
  470.   {
  471.     /* this is a slave, ask it for the master */
  472.     if (get_master(mysql, res, row) || get_slaves_from_master(mysql))
  473.       goto err;
  474.   }
  475.   else
  476.   {
  477.     mysql->master = mysql;
  478.     if (get_slaves_from_master(mysql))
  479.       goto err;
  480.   }
  481.   error = 0;
  482. err:
  483.   if (res)
  484.     mysql_free_result(res);
  485.   DBUG_RETURN(error);
  486. }
  487. /*
  488.   Make a not so fool-proof decision on where the query should go, to
  489.   the master or the slave. Ideally the user should always make this
  490.   decision himself with mysql_master_query() or mysql_slave_query().
  491.   However, to be able to more easily port the old code, we support the
  492.   option of an educated guess - this should work for most applications,
  493.   however, it may make the wrong decision in some particular cases. If
  494.   that happens, the user would have to change the code to call
  495.   mysql_master_query() or mysql_slave_query() explicitly in the place
  496.   where we have made the wrong decision
  497. */
  498. enum mysql_rpl_type
  499. STDCALL mysql_rpl_query_type(const char* q, int len)
  500. {
  501.   const char *q_end= q + len;
  502.   for (; q < q_end; ++q)
  503.   {
  504.     char c;
  505.     if (my_isalpha(&my_charset_latin1, (c= *q)))
  506.     {
  507.       switch (my_tolower(&my_charset_latin1,c)) {
  508.       case 'i':  /* insert */
  509.       case 'u':  /* update or unlock tables */
  510.       case 'l':  /* lock tables or load data infile */
  511.       case 'd':  /* drop or delete */
  512.       case 'a':  /* alter */
  513. return MYSQL_RPL_MASTER;
  514.       case 'c':  /* create or check */
  515. return my_tolower(&my_charset_latin1,q[1]) == 'h' ? MYSQL_RPL_ADMIN :
  516.   MYSQL_RPL_MASTER;
  517.       case 's': /* select or show */
  518. return my_tolower(&my_charset_latin1,q[1]) == 'h' ? MYSQL_RPL_ADMIN :
  519.   MYSQL_RPL_SLAVE;
  520.       case 'f': /* flush */
  521.       case 'r': /* repair */
  522.       case 'g': /* grant */
  523. return MYSQL_RPL_ADMIN;
  524.       default:
  525. return MYSQL_RPL_SLAVE;
  526.       }
  527.     }
  528.   }
  529.   return MYSQL_RPL_MASTER; /* By default, send to master */
  530. }
  531. /**************************************************************************
  532.   Connect to sql server
  533.   If host == 0 then use localhost
  534. **************************************************************************/
  535. #ifdef USE_OLD_FUNCTIONS
  536. MYSQL * STDCALL
  537. mysql_connect(MYSQL *mysql,const char *host,
  538.       const char *user, const char *passwd)
  539. {
  540.   MYSQL *res;
  541.   mysql=mysql_init(mysql); /* Make it thread safe */
  542.   {
  543.     DBUG_ENTER("mysql_connect");
  544.     if (!(res=mysql_real_connect(mysql,host,user,passwd,NullS,0,NullS,0)))
  545.     {
  546.       if (mysql->free_me)
  547. my_free((gptr) mysql,MYF(0));
  548.     }
  549.     DBUG_RETURN(res);
  550.   }
  551. }
  552. #endif
  553. /**************************************************************************
  554.   Change user and database
  555. **************************************************************************/
  556. int cli_read_change_user_result(MYSQL *mysql, char *buff, const char *passwd)
  557. {
  558.   NET *net= &mysql->net;
  559.   ulong pkt_length;
  560.   pkt_length= net_safe_read(mysql);
  561.   
  562.   if (pkt_length == packet_error)
  563.     return 1;
  564.   if (pkt_length == 1 && net->read_pos[0] == 254 &&
  565.       mysql->server_capabilities & CLIENT_SECURE_CONNECTION)
  566.   {
  567.     /*
  568.       By sending this very specific reply server asks us to send scrambled
  569.       password in old format. The reply contains scramble_323.
  570.     */
  571.     scramble_323(buff, mysql->scramble, passwd);
  572.     if (my_net_write(net, buff, SCRAMBLE_LENGTH_323 + 1) || net_flush(net))
  573.     {
  574.       net->last_errno= CR_SERVER_LOST;
  575.       strmov(net->sqlstate, unknown_sqlstate);
  576.       strmov(net->last_error,ER(net->last_errno));
  577.       return 1;
  578.     }
  579.     /* Read what server thinks about out new auth message report */
  580.     if (net_safe_read(mysql) == packet_error)
  581.       return 1;
  582.   }
  583.   return 0;
  584. }
  585. my_bool STDCALL mysql_change_user(MYSQL *mysql, const char *user,
  586.   const char *passwd, const char *db)
  587. {
  588.   char buff[512],*end=buff;
  589.   int rc;
  590.   DBUG_ENTER("mysql_change_user");
  591.   if (!user)
  592.     user="";
  593.   if (!passwd)
  594.     passwd="";
  595.   /* Store user into the buffer */
  596.   end=strmov(end,user)+1;
  597.   /* write scrambled password according to server capabilities */
  598.   if (passwd[0])
  599.   {
  600.     if (mysql->server_capabilities & CLIENT_SECURE_CONNECTION)
  601.     {
  602.       *end++= SCRAMBLE_LENGTH;
  603.       scramble(end, mysql->scramble, passwd);
  604.       end+= SCRAMBLE_LENGTH;
  605.     }
  606.     else
  607.     {
  608.       scramble_323(end, mysql->scramble, passwd);
  609.       end+= SCRAMBLE_LENGTH_323 + 1;
  610.     }
  611.   }
  612.   else
  613.     *end++= '';                               /* empty password */
  614.   /* Add database if needed */
  615.   end= strmov(end, db ? db : "") + 1;
  616.   /* Write authentication package */
  617.   simple_command(mysql,COM_CHANGE_USER, buff,(ulong) (end-buff),1);
  618.   rc= (*mysql->methods->read_change_user_result)(mysql, buff, passwd);
  619.   /*
  620.     The server will close all statements no matter was the attempt
  621.     to change user successful or not.
  622.   */
  623.   mysql_detach_stmt_list(&mysql->stmts);
  624.   if (rc == 0)
  625.   {
  626.     /* Free old connect information */
  627.     my_free(mysql->user,MYF(MY_ALLOW_ZERO_PTR));
  628.     my_free(mysql->passwd,MYF(MY_ALLOW_ZERO_PTR));
  629.     my_free(mysql->db,MYF(MY_ALLOW_ZERO_PTR));
  630.     /* alloc new connect information */
  631.     mysql->user=  my_strdup(user,MYF(MY_WME));
  632.     mysql->passwd=my_strdup(passwd,MYF(MY_WME));
  633.     mysql->db=    db ? my_strdup(db,MYF(MY_WME)) : 0;
  634.   }
  635.   DBUG_RETURN(rc);
  636. }
  637. #if defined(HAVE_GETPWUID) && defined(NO_GETPWUID_DECL)
  638. struct passwd *getpwuid(uid_t);
  639. char* getlogin(void);
  640. #endif
  641. #if defined(__NETWARE__)
  642. /* Default to value of USER on NetWare, if unset use "UNKNOWN_USER" */
  643. void read_user_name(char *name)
  644. {
  645.   char *str=getenv("USER");
  646.   strmake(name, str ? str : "UNKNOWN_USER", USERNAME_LENGTH);
  647. }
  648. #elif !defined(MSDOS) && ! defined(VMS) && !defined(__WIN__) && !defined(OS2)
  649. void read_user_name(char *name)
  650. {
  651.   DBUG_ENTER("read_user_name");
  652.   if (geteuid() == 0)
  653.     (void) strmov(name,"root"); /* allow use of surun */
  654.   else
  655.   {
  656. #ifdef HAVE_GETPWUID
  657.     struct passwd *skr;
  658.     const char *str;
  659.     if ((str=getlogin()) == NULL)
  660.     {
  661.       if ((skr=getpwuid(geteuid())) != NULL)
  662. str=skr->pw_name;
  663.       else if (!(str=getenv("USER")) && !(str=getenv("LOGNAME")) &&
  664.        !(str=getenv("LOGIN")))
  665. str="UNKNOWN_USER";
  666.     }
  667.     (void) strmake(name,str,USERNAME_LENGTH);
  668. #elif HAVE_CUSERID
  669.     (void) cuserid(name);
  670. #else
  671.     strmov(name,"UNKNOWN_USER");
  672. #endif
  673.   }
  674.   DBUG_VOID_RETURN;
  675. }
  676. #else /* If MSDOS || VMS */
  677. void read_user_name(char *name)
  678. {
  679.   char *str=getenv("USER"); /* ODBC will send user variable */
  680.   strmake(name,str ? str : "ODBC", USERNAME_LENGTH);
  681. }
  682. #endif
  683. my_bool handle_local_infile(MYSQL *mysql, const char *net_filename)
  684. {
  685.   my_bool result= 1;
  686.   uint packet_length=MY_ALIGN(mysql->net.max_packet-16,IO_SIZE);
  687.   NET *net= &mysql->net;
  688.   int readcount;
  689.   void *li_ptr;          /* pass state to local_infile functions */
  690.   char *buf; /* buffer to be filled by local_infile_read */
  691.   struct st_mysql_options *options= &mysql->options;
  692.   DBUG_ENTER("handle_local_infile");
  693.   /* check that we've got valid callback functions */
  694.   if (!(options->local_infile_init &&
  695. options->local_infile_read &&
  696. options->local_infile_end &&
  697. options->local_infile_error))
  698.   {
  699.     /* if any of the functions is invalid, set the default */
  700.     mysql_set_local_infile_default(mysql);
  701.   }
  702.   /* copy filename into local memory and allocate read buffer */
  703.   if (!(buf=my_malloc(packet_length, MYF(0))))
  704.   {
  705.     strmov(net->sqlstate, unknown_sqlstate);
  706.     strmov(net->last_error, ER(net->last_errno=CR_OUT_OF_MEMORY));
  707.     DBUG_RETURN(1);
  708.   }
  709.   /* initialize local infile (open file, usually) */
  710.   if ((*options->local_infile_init)(&li_ptr, net_filename,
  711.     options->local_infile_userdata))
  712.   {
  713.     my_net_write(net,"",0); /* Server needs one packet */
  714.     net_flush(net);
  715.     strmov(net->sqlstate, unknown_sqlstate);
  716.     net->last_errno= (*options->local_infile_error)(li_ptr,
  717.     net->last_error,
  718.     sizeof(net->last_error)-1);
  719.     goto err;
  720.   }
  721.   /* read blocks of data from local infile callback */
  722.   while ((readcount =
  723.   (*options->local_infile_read)(li_ptr, buf,
  724. packet_length)) > 0)
  725.   {
  726.     if (my_net_write(net,buf,readcount))
  727.     {
  728.       DBUG_PRINT("error",
  729.  ("Lost connection to MySQL server during LOAD DATA of local file"));
  730.       strmov(net->sqlstate, unknown_sqlstate);
  731.       net->last_errno=CR_SERVER_LOST;
  732.       strmov(net->last_error,ER(net->last_errno));
  733.       goto err;
  734.     }
  735.   }
  736.   /* Send empty packet to mark end of file */
  737.   if (my_net_write(net,"",0) || net_flush(net))
  738.   {
  739.     strmov(net->sqlstate, unknown_sqlstate);
  740.     net->last_errno=CR_SERVER_LOST;
  741.     sprintf(net->last_error,ER(net->last_errno),errno);
  742.     goto err;
  743.   }
  744.   if (readcount < 0)
  745.   {
  746.     net->last_errno= (*options->local_infile_error)(li_ptr,
  747.     net->last_error,
  748.     sizeof(net->last_error)-1);
  749.     goto err;
  750.   }
  751.   result=0; /* Ok */
  752. err:
  753.   /* free up memory allocated with _init, usually */
  754.   (*options->local_infile_end)(li_ptr);
  755.   my_free(buf, MYF(0));
  756.   DBUG_RETURN(result);
  757. }
  758. /****************************************************************************
  759.   Default handlers for LOAD LOCAL INFILE
  760. ****************************************************************************/
  761. typedef struct st_default_local_infile
  762. {
  763.   int fd;
  764.   int error_num;
  765.   const char *filename;
  766.   char error_msg[LOCAL_INFILE_ERROR_LEN];
  767. } default_local_infile_data;
  768. /*
  769.   Open file for LOAD LOCAL INFILE
  770.   SYNOPSIS
  771.     default_local_infile_init()
  772.     ptr Store pointer to internal data here
  773.     filename File name to open. This may be in unix format !
  774.   NOTES
  775.     Even if this function returns an error, the load data interface
  776.     guarantees that default_local_infile_end() is called.
  777.   RETURN
  778.     0 ok
  779.     1 error
  780. */
  781. static int default_local_infile_init(void **ptr, const char *filename,
  782.              void *userdata __attribute__ ((unused)))
  783. {
  784.   default_local_infile_data *data;
  785.   char tmp_name[FN_REFLEN];
  786.   if (!(*ptr= data= ((default_local_infile_data *)
  787.      my_malloc(sizeof(default_local_infile_data),  MYF(0)))))
  788.     return 1; /* out of memory */
  789.   data->error_msg[0]= 0;
  790.   data->error_num=    0;
  791.   data->filename= filename;
  792.   fn_format(tmp_name, filename, "", "", MY_UNPACK_FILENAME);
  793.   if ((data->fd = my_open(tmp_name, O_RDONLY, MYF(0))) < 0)
  794.   {
  795.     data->error_num= my_errno;
  796.     my_snprintf(data->error_msg, sizeof(data->error_msg)-1,
  797.                 EE(EE_FILENOTFOUND), tmp_name, data->error_num);
  798.     return 1;
  799.   }
  800.   return 0; /* ok */
  801. }
  802. /*
  803.   Read data for LOAD LOCAL INFILE
  804.   SYNOPSIS
  805.     default_local_infile_read()
  806.     ptr Points to handle allocated by _init
  807.     buf Read data here
  808.     buf_len Ammount of data to read
  809.   RETURN
  810.     > 0 number of bytes read
  811.     == 0 End of data
  812.     < 0 Error
  813. */
  814. static int default_local_infile_read(void *ptr, char *buf, uint buf_len)
  815. {
  816.   int count;
  817.   default_local_infile_data*data = (default_local_infile_data *) ptr;
  818.   if ((count= (int) my_read(data->fd, (byte *) buf, buf_len, MYF(0))) < 0)
  819.   {
  820.     data->error_num= EE_READ; /* the errmsg for not entire file read */
  821.     my_snprintf(data->error_msg, sizeof(data->error_msg)-1,
  822. EE(EE_READ),
  823. data->filename, my_errno);
  824.   }
  825.   return count;
  826. }
  827. /*
  828.   Read data for LOAD LOCAL INFILE
  829.   SYNOPSIS
  830.     default_local_infile_end()
  831.     ptr Points to handle allocated by _init
  832. May be NULL if _init failed!
  833.   RETURN
  834. */
  835. static void default_local_infile_end(void *ptr)
  836. {
  837.   default_local_infile_data *data= (default_local_infile_data *) ptr;
  838.   if (data) /* If not error on open */
  839.   {
  840.     if (data->fd >= 0)
  841.       my_close(data->fd, MYF(MY_WME));
  842.     my_free(ptr, MYF(MY_WME));
  843.   }
  844. }
  845. /*
  846.   Return error from LOAD LOCAL INFILE
  847.   SYNOPSIS
  848.     default_local_infile_end()
  849.     ptr Points to handle allocated by _init
  850. May be NULL if _init failed!
  851.     error_msg Store error text here
  852.     error_msg_len Max lenght of error_msg
  853.   RETURN
  854.     error message number
  855. */
  856. static int
  857. default_local_infile_error(void *ptr, char *error_msg, uint error_msg_len)
  858. {
  859.   default_local_infile_data *data = (default_local_infile_data *) ptr;
  860.   if (data) /* If not error on open */
  861.   {
  862.     strmake(error_msg, data->error_msg, error_msg_len);
  863.     return data->error_num;
  864.   }
  865.   /* This can only happen if we got error on malloc of handle */
  866.   strmov(error_msg, ER(CR_OUT_OF_MEMORY));
  867.   return CR_OUT_OF_MEMORY;
  868. }
  869. void
  870. mysql_set_local_infile_handler(MYSQL *mysql,
  871.                                int (*local_infile_init)(void **, const char *,
  872.                                void *),
  873.                                int (*local_infile_read)(void *, char *, uint),
  874.                                void (*local_infile_end)(void *),
  875.                                int (*local_infile_error)(void *, char *, uint),
  876.                                void *userdata)
  877. {
  878.   mysql->options.local_infile_init=  local_infile_init;
  879.   mysql->options.local_infile_read=  local_infile_read;
  880.   mysql->options.local_infile_end=   local_infile_end;
  881.   mysql->options.local_infile_error= local_infile_error;
  882.   mysql->options.local_infile_userdata = userdata;
  883. }
  884. void mysql_set_local_infile_default(MYSQL *mysql)
  885. {
  886.   mysql->options.local_infile_init=  default_local_infile_init;
  887.   mysql->options.local_infile_read=  default_local_infile_read;
  888.   mysql->options.local_infile_end=   default_local_infile_end;
  889.   mysql->options.local_infile_error= default_local_infile_error;
  890. }
  891. /**************************************************************************
  892.   Do a query. If query returned rows, free old rows.
  893.   Read data by mysql_store_result or by repeat call of mysql_fetch_row
  894. **************************************************************************/
  895. int STDCALL
  896. mysql_query(MYSQL *mysql, const char *query)
  897. {
  898.   return mysql_real_query(mysql,query, (uint) strlen(query));
  899. }
  900. static MYSQL* spawn_init(MYSQL* parent, const char* host,
  901.  unsigned int port, const char* user,
  902.  const char* passwd)
  903. {
  904.   MYSQL* child;
  905.   DBUG_ENTER("spawn_init");
  906.   if (!(child= mysql_init(0)))
  907.     DBUG_RETURN(0);
  908.   child->options.user= my_strdup((user) ? user :
  909.  (parent->user ? parent->user :
  910.   parent->options.user), MYF(0));
  911.   child->options.password= my_strdup((passwd) ? passwd :
  912.      (parent->passwd ?
  913.       parent->passwd :
  914.       parent->options.password), MYF(0));
  915.   child->options.port= port;
  916.   child->options.host= my_strdup((host) ? host :
  917.  (parent->host ?
  918.   parent->host :
  919.   parent->options.host), MYF(0));
  920.   if (parent->db)
  921.     child->options.db= my_strdup(parent->db, MYF(0));
  922.   else if (parent->options.db)
  923.     child->options.db= my_strdup(parent->options.db, MYF(0));
  924.   /*
  925.     rpl_pivot is set to 1 in mysql_init();  Reset it as we are not doing
  926.     replication here
  927.   */
  928.   child->rpl_pivot= 0;
  929.   DBUG_RETURN(child);
  930. }
  931. int
  932. STDCALL mysql_set_master(MYSQL* mysql, const char* host,
  933.  unsigned int port, const char* user,
  934.  const char* passwd)
  935. {
  936.   if (mysql->master != mysql && !mysql->master->rpl_pivot)
  937.     mysql_close(mysql->master);
  938.   if (!(mysql->master = spawn_init(mysql, host, port, user, passwd)))
  939.     return 1;
  940.   return 0;
  941. }
  942. int
  943. STDCALL mysql_add_slave(MYSQL* mysql, const char* host,
  944. unsigned int port,
  945. const char* user,
  946. const char* passwd)
  947. {
  948.   MYSQL* slave;
  949.   if (!(slave = spawn_init(mysql, host, port, user, passwd)))
  950.     return 1;
  951.   slave->next_slave = mysql->next_slave;
  952.   mysql->next_slave = slave;
  953.   return 0;
  954. }
  955. /**************************************************************************
  956.   Return next field of the query results
  957. **************************************************************************/
  958. MYSQL_FIELD * STDCALL
  959. mysql_fetch_field(MYSQL_RES *result)
  960. {
  961.   if (result->current_field >= result->field_count)
  962.     return(NULL);
  963.   return &result->fields[result->current_field++];
  964. }
  965. /**************************************************************************
  966.   Get column lengths of the current row
  967.   If one uses mysql_use_result, res->lengths contains the length information,
  968.   else the lengths are calculated from the offset between pointers.
  969. **************************************************************************/
  970. ulong * STDCALL
  971. mysql_fetch_lengths(MYSQL_RES *res)
  972. {
  973.   MYSQL_ROW column;
  974.   if (!(column=res->current_row))
  975.     return 0; /* Something is wrong */
  976.   if (res->data)
  977.     (*res->methods->fetch_lengths)(res->lengths, column, res->field_count);
  978.   return res->lengths;
  979. }
  980. /**************************************************************************
  981.   Move to a specific row and column
  982. **************************************************************************/
  983. void STDCALL
  984. mysql_data_seek(MYSQL_RES *result, my_ulonglong row)
  985. {
  986.   MYSQL_ROWS *tmp=0;
  987.   DBUG_PRINT("info",("mysql_data_seek(%ld)",(long) row));
  988.   if (result->data)
  989.     for (tmp=result->data->data; row-- && tmp ; tmp = tmp->next) ;
  990.   result->current_row=0;
  991.   result->data_cursor = tmp;
  992. }
  993. /*************************************************************************
  994.   put the row or field cursor one a position one got from mysql_row_tell()
  995.   This doesn't restore any data. The next mysql_fetch_row or
  996.   mysql_fetch_field will return the next row or field after the last used
  997. *************************************************************************/
  998. MYSQL_ROW_OFFSET STDCALL
  999. mysql_row_seek(MYSQL_RES *result, MYSQL_ROW_OFFSET row)
  1000. {
  1001.   MYSQL_ROW_OFFSET return_value=result->data_cursor;
  1002.   result->current_row= 0;
  1003.   result->data_cursor= row;
  1004.   return return_value;
  1005. }
  1006. MYSQL_FIELD_OFFSET STDCALL
  1007. mysql_field_seek(MYSQL_RES *result, MYSQL_FIELD_OFFSET field_offset)
  1008. {
  1009.   MYSQL_FIELD_OFFSET return_value=result->current_field;
  1010.   result->current_field=field_offset;
  1011.   return return_value;
  1012. }
  1013. /*****************************************************************************
  1014.   List all databases
  1015. *****************************************************************************/
  1016. MYSQL_RES * STDCALL
  1017. mysql_list_dbs(MYSQL *mysql, const char *wild)
  1018. {
  1019.   char buff[255];
  1020.   DBUG_ENTER("mysql_list_dbs");
  1021.   append_wild(strmov(buff,"show databases"),buff+sizeof(buff),wild);
  1022.   if (mysql_query(mysql,buff))
  1023.     DBUG_RETURN(0);
  1024.   DBUG_RETURN (mysql_store_result(mysql));
  1025. }
  1026. /*****************************************************************************
  1027.   List all tables in a database
  1028.   If wild is given then only the tables matching wild is returned
  1029. *****************************************************************************/
  1030. MYSQL_RES * STDCALL
  1031. mysql_list_tables(MYSQL *mysql, const char *wild)
  1032. {
  1033.   char buff[255];
  1034.   DBUG_ENTER("mysql_list_tables");
  1035.   append_wild(strmov(buff,"show tables"),buff+sizeof(buff),wild);
  1036.   if (mysql_query(mysql,buff))
  1037.     DBUG_RETURN(0);
  1038.   DBUG_RETURN (mysql_store_result(mysql));
  1039. }
  1040. MYSQL_FIELD *cli_list_fields(MYSQL *mysql)
  1041. {
  1042.   MYSQL_DATA *query;
  1043.   if (!(query= cli_read_rows(mysql,(MYSQL_FIELD*) 0, 
  1044.      protocol_41(mysql) ? 8 : 6)))
  1045.     return NULL;
  1046.   mysql->field_count= (uint) query->rows;
  1047.   return unpack_fields(query,&mysql->field_alloc,
  1048.        mysql->field_count, 1, mysql->server_capabilities);
  1049. }
  1050. /**************************************************************************
  1051.   List all fields in a table
  1052.   If wild is given then only the fields matching wild is returned
  1053.   Instead of this use query:
  1054.   show fields in 'table' like "wild"
  1055. **************************************************************************/
  1056. MYSQL_RES * STDCALL
  1057. mysql_list_fields(MYSQL *mysql, const char *table, const char *wild)
  1058. {
  1059.   MYSQL_RES   *result;
  1060.   MYSQL_FIELD *fields;
  1061.   char      buff[257],*end;
  1062.   DBUG_ENTER("mysql_list_fields");
  1063.   DBUG_PRINT("enter",("table: '%s'  wild: '%s'",table,wild ? wild : ""));
  1064.   end=strmake(strmake(buff, table,128)+1,wild ? wild : "",128);
  1065.   free_old_query(mysql);
  1066.   if (simple_command(mysql,COM_FIELD_LIST,buff,(ulong) (end-buff),1) ||
  1067.       !(fields= (*mysql->methods->list_fields)(mysql)))
  1068.     DBUG_RETURN(NULL);
  1069.   if (!(result = (MYSQL_RES *) my_malloc(sizeof(MYSQL_RES),
  1070.  MYF(MY_WME | MY_ZEROFILL))))
  1071.     DBUG_RETURN(NULL);
  1072.   result->methods= mysql->methods;
  1073.   result->field_alloc=mysql->field_alloc;
  1074.   mysql->fields=0;
  1075.   result->field_count = mysql->field_count;
  1076.   result->fields= fields;
  1077.   result->eof=1;
  1078.   DBUG_RETURN(result);
  1079. }
  1080. /* List all running processes (threads) in server */
  1081. MYSQL_RES * STDCALL
  1082. mysql_list_processes(MYSQL *mysql)
  1083. {
  1084.   MYSQL_DATA *fields;
  1085.   uint field_count;
  1086.   uchar *pos;
  1087.   DBUG_ENTER("mysql_list_processes");
  1088.   LINT_INIT(fields);
  1089.   if (simple_command(mysql,COM_PROCESS_INFO,0,0,0))
  1090.     DBUG_RETURN(0);
  1091.   free_old_query(mysql);
  1092.   pos=(uchar*) mysql->net.read_pos;
  1093.   field_count=(uint) net_field_length(&pos);
  1094.   if (!(fields = (*mysql->methods->read_rows)(mysql,(MYSQL_FIELD*) 0,
  1095.       protocol_41(mysql) ? 7 : 5)))
  1096.     DBUG_RETURN(NULL);
  1097.   if (!(mysql->fields=unpack_fields(fields,&mysql->field_alloc,field_count,0,
  1098.     mysql->server_capabilities)))
  1099.     DBUG_RETURN(0);
  1100.   mysql->status=MYSQL_STATUS_GET_RESULT;
  1101.   mysql->field_count=field_count;
  1102.   DBUG_RETURN(mysql_store_result(mysql));
  1103. }
  1104. #ifdef USE_OLD_FUNCTIONS
  1105. int  STDCALL
  1106. mysql_create_db(MYSQL *mysql, const char *db)
  1107. {
  1108.   DBUG_ENTER("mysql_createdb");
  1109.   DBUG_PRINT("enter",("db: %s",db));
  1110.   DBUG_RETURN(simple_command(mysql,COM_CREATE_DB,db, (ulong) strlen(db),0));
  1111. }
  1112. int  STDCALL
  1113. mysql_drop_db(MYSQL *mysql, const char *db)
  1114. {
  1115.   DBUG_ENTER("mysql_drop_db");
  1116.   DBUG_PRINT("enter",("db: %s",db));
  1117.   DBUG_RETURN(simple_command(mysql,COM_DROP_DB,db,(ulong) strlen(db),0));
  1118. }
  1119. #endif
  1120. int STDCALL
  1121. mysql_shutdown(MYSQL *mysql, enum mysql_enum_shutdown_level shutdown_level)
  1122. {
  1123.   uchar level[1];
  1124.   DBUG_ENTER("mysql_shutdown");
  1125.   level[0]= (uchar) shutdown_level;
  1126.   DBUG_RETURN(simple_command(mysql, COM_SHUTDOWN, (char *)level, 1, 0));
  1127. }
  1128. int STDCALL
  1129. mysql_refresh(MYSQL *mysql,uint options)
  1130. {
  1131.   uchar bits[1];
  1132.   DBUG_ENTER("mysql_refresh");
  1133.   bits[0]= (uchar) options;
  1134.   DBUG_RETURN(simple_command(mysql,COM_REFRESH,(char*) bits,1,0));
  1135. }
  1136. int STDCALL
  1137. mysql_kill(MYSQL *mysql,ulong pid)
  1138. {
  1139.   char buff[4];
  1140.   DBUG_ENTER("mysql_kill");
  1141.   int4store(buff,pid);
  1142.   DBUG_RETURN(simple_command(mysql,COM_PROCESS_KILL,buff,sizeof(buff),0));
  1143. }
  1144. int STDCALL
  1145. mysql_set_server_option(MYSQL *mysql, enum enum_mysql_set_option option)
  1146. {
  1147.   char buff[2];
  1148.   DBUG_ENTER("mysql_set_server_option");
  1149.   int2store(buff, (uint) option);
  1150.   DBUG_RETURN(simple_command(mysql, COM_SET_OPTION, buff, sizeof(buff), 0));
  1151. }
  1152. int STDCALL
  1153. mysql_dump_debug_info(MYSQL *mysql)
  1154. {
  1155.   DBUG_ENTER("mysql_dump_debug_info");
  1156.   DBUG_RETURN(simple_command(mysql,COM_DEBUG,0,0,0));
  1157. }
  1158. const char *cli_read_statistics(MYSQL *mysql)
  1159. {
  1160.   mysql->net.read_pos[mysql->packet_length]=0; /* End of stat string */
  1161.   if (!mysql->net.read_pos[0])
  1162.   {
  1163.     strmov(mysql->net.sqlstate, unknown_sqlstate);
  1164.     mysql->net.last_errno=CR_WRONG_HOST_INFO;
  1165.     strmov(mysql->net.last_error, ER(mysql->net.last_errno));
  1166.     return mysql->net.last_error;
  1167.   }
  1168.   return (char*) mysql->net.read_pos;
  1169. }
  1170. const char * STDCALL
  1171. mysql_stat(MYSQL *mysql)
  1172. {
  1173.   DBUG_ENTER("mysql_stat");
  1174.   if (simple_command(mysql,COM_STATISTICS,0,0,0))
  1175.     return mysql->net.last_error;
  1176.   DBUG_RETURN((*mysql->methods->read_statistics)(mysql));
  1177. }
  1178. int STDCALL
  1179. mysql_ping(MYSQL *mysql)
  1180. {
  1181.   DBUG_ENTER("mysql_ping");
  1182.   DBUG_RETURN(simple_command(mysql,COM_PING,0,0,0));
  1183. }
  1184. const char * STDCALL
  1185. mysql_get_server_info(MYSQL *mysql)
  1186. {
  1187.   return((char*) mysql->server_version);
  1188. }
  1189. /*
  1190.   Get version number for server in a form easy to test on
  1191.   SYNOPSIS
  1192.     mysql_get_server_version()
  1193.     mysql Connection
  1194.   EXAMPLE
  1195.     4.1.0-alfa ->  40100
  1196.   
  1197.   NOTES
  1198.     We will ensure that a newer server always has a bigger number.
  1199.   RETURN
  1200.    Signed number > 323000
  1201. */
  1202. ulong STDCALL
  1203. mysql_get_server_version(MYSQL *mysql)
  1204. {
  1205.   uint major, minor, version;
  1206.   char *pos= mysql->server_version, *end_pos;
  1207.   major=   (uint) strtoul(pos, &end_pos, 10); pos=end_pos+1;
  1208.   minor=   (uint) strtoul(pos, &end_pos, 10); pos=end_pos+1;
  1209.   version= (uint) strtoul(pos, &end_pos, 10);
  1210.   return (ulong) major*10000L+(ulong) (minor*100+version);
  1211. }
  1212. const char * STDCALL
  1213. mysql_get_host_info(MYSQL *mysql)
  1214. {
  1215.   return(mysql->host_info);
  1216. }
  1217. uint STDCALL
  1218. mysql_get_proto_info(MYSQL *mysql)
  1219. {
  1220.   return (mysql->protocol_version);
  1221. }
  1222. const char * STDCALL
  1223. mysql_get_client_info(void)
  1224. {
  1225.   return (char*) MYSQL_SERVER_VERSION;
  1226. }
  1227. ulong STDCALL mysql_get_client_version(void)
  1228. {
  1229.   return MYSQL_VERSION_ID;
  1230. }
  1231. my_bool STDCALL mysql_eof(MYSQL_RES *res)
  1232. {
  1233.   return res->eof;
  1234. }
  1235. MYSQL_FIELD * STDCALL mysql_fetch_field_direct(MYSQL_RES *res,uint fieldnr)
  1236. {
  1237.   return &(res)->fields[fieldnr];
  1238. }
  1239. MYSQL_FIELD * STDCALL mysql_fetch_fields(MYSQL_RES *res)
  1240. {
  1241.   return (res)->fields;
  1242. }
  1243. MYSQL_ROW_OFFSET STDCALL mysql_row_tell(MYSQL_RES *res)
  1244. {
  1245.   return res->data_cursor;
  1246. }
  1247. MYSQL_FIELD_OFFSET STDCALL mysql_field_tell(MYSQL_RES *res)
  1248. {
  1249.   return (res)->current_field;
  1250. }
  1251. /* MYSQL */
  1252. unsigned int STDCALL mysql_field_count(MYSQL *mysql)
  1253. {
  1254.   return mysql->last_used_con->field_count;
  1255. }
  1256. my_ulonglong STDCALL mysql_affected_rows(MYSQL *mysql)
  1257. {
  1258.   return mysql->last_used_con->affected_rows;
  1259. }
  1260. my_ulonglong STDCALL mysql_insert_id(MYSQL *mysql)
  1261. {
  1262.   return mysql->last_used_con->insert_id;
  1263. }
  1264. const char *STDCALL mysql_sqlstate(MYSQL *mysql)
  1265. {
  1266.   return mysql->net.sqlstate;
  1267. }
  1268. uint STDCALL mysql_warning_count(MYSQL *mysql)
  1269. {
  1270.   return mysql->warning_count;
  1271. }
  1272. const char *STDCALL mysql_info(MYSQL *mysql)
  1273. {
  1274.   return mysql->info;
  1275. }
  1276. ulong STDCALL mysql_thread_id(MYSQL *mysql)
  1277. {
  1278.   return (mysql)->thread_id;
  1279. }
  1280. const char * STDCALL mysql_character_set_name(MYSQL *mysql)
  1281. {
  1282.   return mysql->charset->csname;
  1283. }
  1284. int STDCALL mysql_set_character_set(MYSQL *mysql, const char *cs_name)
  1285. {
  1286.   struct charset_info_st *cs;
  1287.   const char *save_csdir= charsets_dir;
  1288.   if (mysql->options.charset_dir)
  1289.     charsets_dir= mysql->options.charset_dir;
  1290.   if (strlen(cs_name) < MY_CS_NAME_SIZE && 
  1291.       (cs= get_charset_by_csname(cs_name, MY_CS_PRIMARY, MYF(0))))
  1292.   {
  1293.     char buff[MY_CS_NAME_SIZE + 10];
  1294.     charsets_dir= save_csdir;
  1295.     sprintf(buff, "SET NAMES %s", cs_name);
  1296.     if (!mysql_query(mysql, buff))
  1297.     {
  1298.       mysql->charset= cs;
  1299.     }
  1300.   }
  1301.   else
  1302.   {
  1303.     char cs_dir_name[FN_REFLEN];
  1304.     get_charsets_dir(cs_dir_name);
  1305.     mysql->net.last_errno= CR_CANT_READ_CHARSET;
  1306.     strmov(mysql->net.sqlstate, unknown_sqlstate);
  1307.     my_snprintf(mysql->net.last_error, sizeof(mysql->net.last_error) - 1,
  1308. ER(mysql->net.last_errno), cs_name, cs_dir_name);
  1309.   }
  1310.   charsets_dir= save_csdir;
  1311.   return mysql->net.last_errno;
  1312. }
  1313. uint STDCALL mysql_thread_safe(void)
  1314. {
  1315. #ifdef THREAD
  1316.   return 1;
  1317. #else
  1318.   return 0;
  1319. #endif
  1320. }
  1321. my_bool STDCALL mysql_embedded(void)
  1322. {
  1323. #ifdef EMBEDDED_LIBRARY
  1324.   return 1;
  1325. #else
  1326.   return 0;
  1327. #endif
  1328. }
  1329. /****************************************************************************
  1330.   Some support functions
  1331. ****************************************************************************/
  1332. /*
  1333.   Functions called my my_net_init() to set some application specific variables
  1334. */
  1335. void my_net_local_init(NET *net)
  1336. {
  1337.   net->max_packet=   (uint) net_buffer_length;
  1338.   net->read_timeout= (uint) net_read_timeout;
  1339.   net->write_timeout=(uint) net_write_timeout;
  1340.   net->retry_count=  1;
  1341.   net->max_packet_size= max(net_buffer_length, max_allowed_packet);
  1342. }
  1343. /*
  1344.   This function is used to create HEX string that you
  1345.   can use in a SQL statement in of the either ways:
  1346.     INSERT INTO blob_column VALUES (0xAABBCC);  (any MySQL version)
  1347.     INSERT INTO blob_column VALUES (X'AABBCC'); (4.1 and higher)
  1348.   
  1349.   The string in "from" is encoded to a HEX string.
  1350.   The result is placed in "to" and a terminating null byte is appended.
  1351.   
  1352.   The string pointed to by "from" must be "length" bytes long.
  1353.   You must allocate the "to" buffer to be at least length*2+1 bytes long.
  1354.   Each character needs two bytes, and you need room for the terminating
  1355.   null byte. When mysql_hex_string() returns, the contents of "to" will
  1356.   be a null-terminated string. The return value is the length of the
  1357.   encoded string, not including the terminating null character.
  1358.   The return value does not contain any leading 0x or a leading X' and
  1359.   trailing '. The caller must supply whichever of those is desired.
  1360. */
  1361. ulong STDCALL
  1362. mysql_hex_string(char *to, const char *from, ulong length)
  1363. {
  1364.   char *to0= to;
  1365.   const char *end;
  1366.             
  1367.   for (end= from + length; from < end; from++)
  1368.   {
  1369.     *to++= _dig_vec_upper[((unsigned char) *from) >> 4];
  1370.     *to++= _dig_vec_upper[((unsigned char) *from) & 0x0F];
  1371.   }
  1372.   *to= '';
  1373.   return (ulong) (to-to0);
  1374. }
  1375. /*
  1376.   Add escape characters to a string (blob?) to make it suitable for a insert
  1377.   to should at least have place for length*2+1 chars
  1378.   Returns the length of the to string
  1379. */
  1380. ulong STDCALL
  1381. mysql_escape_string(char *to,const char *from,ulong length)
  1382. {
  1383.   return escape_string_for_mysql(default_charset_info, to, from, length);
  1384. }
  1385. ulong STDCALL
  1386. mysql_real_escape_string(MYSQL *mysql, char *to,const char *from,
  1387.  ulong length)
  1388. {
  1389.   return escape_string_for_mysql(mysql->charset, to, from, length);
  1390. }
  1391. char * STDCALL
  1392. mysql_odbc_escape_string(MYSQL *mysql,
  1393.  char *to, ulong to_length,
  1394.  const char *from, ulong from_length,
  1395.  void *param,
  1396.  char * (*extend_buffer)
  1397.  (void *, char *, ulong *))
  1398. {
  1399.   char *to_end=to+to_length-5;
  1400.   const char *end;
  1401. #ifdef USE_MB
  1402.   my_bool use_mb_flag=use_mb(mysql->charset);
  1403. #endif
  1404.   for (end=from+from_length; from != end ; from++)
  1405.   {
  1406.     if (to >= to_end)
  1407.     {
  1408.       to_length = (ulong) (end-from)+512; /* We want this much more */
  1409.       if (!(to=(*extend_buffer)(param, to, &to_length)))
  1410. return to;
  1411.       to_end=to+to_length-5;
  1412.     }
  1413. #ifdef USE_MB
  1414.     {
  1415.       int l;
  1416.       if (use_mb_flag && (l = my_ismbchar(mysql->charset, from, end)))
  1417.       {
  1418. while (l--)
  1419.   *to++ = *from++;
  1420. from--;
  1421. continue;
  1422.       }
  1423.     }
  1424. #endif
  1425.     switch (*from) {
  1426.     case 0: /* Must be escaped for 'mysql' */
  1427.       *to++= '\';
  1428.       *to++= '0';
  1429.       break;
  1430.     case 'n': /* Must be escaped for logs */
  1431.       *to++= '\';
  1432.       *to++= 'n';
  1433.       break;
  1434.     case 'r':
  1435.       *to++= '\';
  1436.       *to++= 'r';
  1437.       break;
  1438.     case '\':
  1439.       *to++= '\';
  1440.       *to++= '\';
  1441.       break;
  1442.     case ''':
  1443.       *to++= '\';
  1444.       *to++= ''';
  1445.       break;
  1446.     case '"': /* Better safe than sorry */
  1447.       *to++= '\';
  1448.       *to++= '"';
  1449.       break;
  1450.     case '32': /* This gives problems on Win32 */
  1451.       *to++= '\';
  1452.       *to++= 'Z';
  1453.       break;
  1454.     default:
  1455.       *to++= *from;
  1456.     }
  1457.   }
  1458.   return to;
  1459. }
  1460. void STDCALL
  1461. myodbc_remove_escape(MYSQL *mysql,char *name)
  1462. {
  1463.   char *to;
  1464. #ifdef USE_MB
  1465.   my_bool use_mb_flag=use_mb(mysql->charset);
  1466.   char *end;
  1467.   LINT_INIT(end);
  1468.   if (use_mb_flag)
  1469.     for (end=name; *end ; end++) ;
  1470. #endif
  1471.   for (to=name ; *name ; name++)
  1472.   {
  1473. #ifdef USE_MB
  1474.     int l;
  1475.     if (use_mb_flag && (l = my_ismbchar( mysql->charset, name , end ) ) )
  1476.     {
  1477.       while (l--)
  1478. *to++ = *name++;
  1479.       name--;
  1480.       continue;
  1481.     }
  1482. #endif
  1483.     if (*name == '\' && name[1])
  1484.       name++;
  1485.     *to++= *name;
  1486.   }
  1487.   *to=0;
  1488. }
  1489. /********************************************************************
  1490.  Implementation of new client API for 4.1 version.
  1491.  mysql_stmt_* are real prototypes used by applications.
  1492.  To make API work in embedded library all functions performing
  1493.  real I/O are prefixed with 'cli_' (abbreviated from 'Call Level
  1494.  Interface'). This functions are invoked via pointers set in
  1495.  MYSQL::methods structure. Embedded counterparts, prefixed with
  1496.  'emb_' reside in libmysqld/lib_sql.cc.
  1497. *********************************************************************/
  1498. /******************* Declarations ***********************************/
  1499. /*
  1500.   These functions are called by function pointer MYSQL_STMT::read_row_func.
  1501.   Each function corresponds to one of the read methods:
  1502.   - mysql_stmt_fetch without prior mysql_stmt_store_result,
  1503.   - mysql_stmt_fetch when result is stored,
  1504.   - mysql_stmt_fetch when there are no rows (always returns MYSQL_NO_DATA)
  1505. */
  1506. static int stmt_read_row_unbuffered(MYSQL_STMT *stmt, unsigned char **row);
  1507. static int stmt_read_row_buffered(MYSQL_STMT *stmt, unsigned char **row);
  1508. static int stmt_read_row_no_data(MYSQL_STMT *stmt, unsigned char **row);
  1509. /*
  1510.   This function is used in mysql_stmt_store_result if
  1511.   STMT_ATTR_UPDATE_MAX_LENGTH attribute is set.
  1512. */
  1513. static void stmt_update_metadata(MYSQL_STMT *stmt, MYSQL_ROWS *data);
  1514. /*
  1515.   Maximum sizes of MYSQL_TYPE_DATE, MYSQL_TYPE_TIME, MYSQL_TYPE_DATETIME
  1516.   values stored in network buffer.
  1517. */
  1518. /* 1 (length) + 2 (year) + 1 (month) + 1 (day) */
  1519. #define MAX_DATE_REP_LENGTH 5
  1520. /*
  1521.   1 (length) + 1 (is negative) + 4 (day count) + 1 (hour)
  1522.   + 1 (minute) + 1 (seconds) + 4 (microseconds)
  1523. */
  1524. #define MAX_TIME_REP_LENGTH 13
  1525. /*
  1526.   1 (length) + 2 (year) + 1 (month) + 1 (day) +
  1527.   1 (hour) + 1 (minute) + 1 (second) + 4 (microseconds)
  1528. */
  1529. #define MAX_DATETIME_REP_LENGTH 12
  1530. #define MAX_DOUBLE_STRING_REP_LENGTH 331
  1531. /**************** Misc utility functions ****************************/
  1532. /*
  1533.   Reallocate the NET package to have at least length bytes available.
  1534.   SYNPOSIS
  1535.     my_realloc_str()
  1536.     net                 The NET structure to modify.
  1537.     length              Ensure that net->buff has space for at least
  1538.                         this number of bytes.
  1539.   RETURN VALUES
  1540.     0   Success.
  1541.     1   Error, i.e. out of memory or requested packet size is bigger
  1542.         than max_allowed_packet. The error code is stored in net->last_errno.
  1543. */
  1544. static my_bool my_realloc_str(NET *net, ulong length)
  1545. {
  1546.   ulong buf_length= (ulong) (net->write_pos - net->buff);
  1547.   my_bool res=0;
  1548.   DBUG_ENTER("my_realloc_str");
  1549.   if (buf_length + length > net->max_packet)
  1550.   {
  1551.     res= net_realloc(net, buf_length + length);
  1552.     net->write_pos= net->buff+ buf_length;
  1553.   }
  1554.   DBUG_RETURN(res);
  1555. }
  1556. /* Clear possible error statee of struct NET */
  1557. static void net_clear_error(NET *net)
  1558. {
  1559.   if (net->last_errno)
  1560.   {
  1561.     net->last_errno= 0;
  1562.     net->last_error[0]= '';
  1563.     strmov(net->sqlstate, not_error_sqlstate);
  1564.   }
  1565. }
  1566. static void stmt_clear_error(MYSQL_STMT *stmt)
  1567. {
  1568.   if (stmt->last_errno)
  1569.   {
  1570.     stmt->last_errno= 0;
  1571.     stmt->last_error[0]= '';
  1572.     strmov(stmt->sqlstate, not_error_sqlstate);
  1573.   }
  1574. }
  1575. /*
  1576.   Set statement error code, sqlstate, and error message
  1577.   from given errcode and sqlstate.
  1578. */
  1579. static void set_stmt_error(MYSQL_STMT * stmt, int errcode,
  1580.                            const char *sqlstate)
  1581. {
  1582.   DBUG_ENTER("set_stmt_error");
  1583.   DBUG_PRINT("enter", ("error: %d '%s'", errcode, ER(errcode)));
  1584.   DBUG_ASSERT(stmt != 0);
  1585.   stmt->last_errno= errcode;
  1586.   strmov(stmt->last_error, ER(errcode));
  1587.   strmov(stmt->sqlstate, sqlstate);
  1588.   DBUG_VOID_RETURN;
  1589. }
  1590. /*
  1591.   Set statement error code, sqlstate, and error message.
  1592. */
  1593. void set_stmt_errmsg(MYSQL_STMT * stmt, const char *err, int errcode,
  1594.                      const char *sqlstate)
  1595. {
  1596.   DBUG_ENTER("set_stmt_errmsg");
  1597.   DBUG_PRINT("enter", ("error: %d/%s '%s'", errcode, sqlstate, err));
  1598.   DBUG_ASSERT(stmt != 0);
  1599.   stmt->last_errno= errcode;
  1600.   if (err && err[0])
  1601.     strmov(stmt->last_error, err);
  1602.   strmov(stmt->sqlstate, sqlstate);
  1603.   DBUG_VOID_RETURN;
  1604. }
  1605. /*
  1606.   Read and unpack server reply to COM_PREPARE command (sent from
  1607.   mysql_stmt_prepare).
  1608.   SYNOPSIS
  1609.     cli_read_prepare_result()
  1610.     mysql   connection handle
  1611.     stmt    statement handle
  1612.   RETURN VALUES
  1613.     0 ok
  1614.     1 error
  1615. */
  1616. my_bool cli_read_prepare_result(MYSQL *mysql, MYSQL_STMT *stmt)
  1617. {
  1618.   uchar *pos;
  1619.   uint field_count, param_count;
  1620.   MYSQL_DATA *fields_data;
  1621.   DBUG_ENTER("read_prepare_result");
  1622.   mysql= mysql->last_used_con;
  1623.   if (net_safe_read(mysql) == packet_error)
  1624.     DBUG_RETURN(1);
  1625.   pos= (uchar*) mysql->net.read_pos;
  1626.   stmt->stmt_id= uint4korr(pos+1); pos+= 5;
  1627.   /* Number of columns in result set */
  1628.   field_count=   uint2korr(pos);   pos+= 2;
  1629.   /* Number of placeholders in the statement */
  1630.   param_count=   uint2korr(pos);   pos+= 2;
  1631.   if (param_count != 0)
  1632.   {
  1633.     MYSQL_DATA *param_data;
  1634.     /* skip parameters data: we don't support it yet */
  1635.     if (!(param_data= (*mysql->methods->read_rows)(mysql, (MYSQL_FIELD*)0, 7)))
  1636.       DBUG_RETURN(1);
  1637.     free_rows(param_data);
  1638.   }
  1639.   if (field_count != 0)
  1640.   {
  1641.     if (!(mysql->server_status & SERVER_STATUS_AUTOCOMMIT))
  1642.       mysql->server_status|= SERVER_STATUS_IN_TRANS;
  1643.     mysql->extra_info= net_field_length_ll(&pos);
  1644.     if (!(fields_data= (*mysql->methods->read_rows)(mysql,(MYSQL_FIELD*)0,7)))
  1645.       DBUG_RETURN(1);
  1646.     if (!(stmt->fields= unpack_fields(fields_data,&stmt->mem_root,
  1647.       field_count,0,
  1648.       mysql->server_capabilities)))
  1649.       DBUG_RETURN(1);
  1650.   }
  1651.   stmt->field_count=  (uint) field_count;
  1652.   stmt->param_count=  (ulong) param_count;
  1653.   mysql->warning_count= 0;
  1654.   DBUG_RETURN(0);
  1655. }
  1656. /*
  1657.   Allocate memory and init prepared statement structure.
  1658.   SYNOPSIS
  1659.     mysql_stmt_init()
  1660.     mysql   connection handle
  1661.   DESCRIPTION
  1662.     This is an entry point of the new API. Returned handle stands for
  1663.     a server-side prepared statement. Memory for this structure (~700
  1664.     bytes) is allocated using 'malloc'. Once created, the handle can be
  1665.     reused many times. Created statement handle is bound to connection
  1666.     handle provided to this call: its lifetime is limited by lifetime
  1667.     of connection.
  1668.     'mysql_stmt_init()' is a pure local call, server side structure is
  1669.     created only in mysql_stmt_prepare.
  1670.     Next steps you may want to make:
  1671.     - set a statement attribute (mysql_stmt_attr_set()),
  1672.     - prepare statement handle with a query (mysql_stmt_prepare()),
  1673.     - close statement handle and free its memory (mysql_stmt_close()),
  1674.     - reset statement with mysql_stmt_reset() (a no-op which will
  1675.       just return).
  1676.     Behaviour of the rest of API calls on this statement is not defined yet
  1677.     (though we're working on making each wrong call sequence return
  1678.     error).
  1679.   RETURN VALUE
  1680.     statement structure upon success and NULL if out of
  1681.     memory
  1682. */
  1683. MYSQL_STMT * STDCALL
  1684. mysql_stmt_init(MYSQL *mysql)
  1685. {
  1686.   MYSQL_STMT *stmt;
  1687.   DBUG_ENTER("mysql_stmt_init");
  1688.   if (!(stmt= (MYSQL_STMT *) my_malloc(sizeof(MYSQL_STMT),
  1689.                                        MYF(MY_WME | MY_ZEROFILL))))
  1690.   {
  1691.     set_mysql_error(mysql, CR_OUT_OF_MEMORY, unknown_sqlstate);
  1692.     DBUG_RETURN(0);
  1693.   }
  1694.   init_alloc_root(&stmt->mem_root, 2048, 2048);
  1695.   init_alloc_root(&stmt->result.alloc, 4096, 4096);
  1696.   stmt->result.alloc.min_malloc= sizeof(MYSQL_ROWS);
  1697.   mysql->stmts= list_add(mysql->stmts, &stmt->list);
  1698.   stmt->list.data= stmt;
  1699.   stmt->state= MYSQL_STMT_INIT_DONE;
  1700.   stmt->mysql= mysql;
  1701.   stmt->read_row_func= stmt_read_row_no_data;
  1702.   /* The rest of statement members was bzeroed inside malloc */
  1703.   DBUG_RETURN(stmt);
  1704. }
  1705. /*
  1706.   Prepare server side statement with query.
  1707.   SYNOPSIS
  1708.     mysql_stmt_prepare()
  1709.     stmt    statement handle
  1710.     query   statement to prepare
  1711.     length  statement length
  1712.   DESCRIPTION
  1713.     Associate statement with statement handle. This is done both on
  1714.     client and server sides. At this point the server parses given query
  1715.     and creates an internal structure to represent it.
  1716.     Next steps you may want to make:
  1717.     - find out if this statement returns a result set by
  1718.       calling mysql_stmt_field_count(), and get result set metadata
  1719.       with mysql_stmt_result_metadata(),
  1720.     - if query contains placeholders, bind input parameters to placeholders
  1721.       using mysql_stmt_bind_param(),
  1722.     - otherwise proceed directly to mysql_stmt_execute().
  1723.   IMPLEMENTATION NOTES
  1724.   - if this is a re-prepare of the statement, first close previous data
  1725.     structure on the server and free old statement data
  1726.   - then send the query to server and get back number of placeholders,
  1727.     number of columns in result set (if any), and result set metadata.
  1728.     At the same time allocate memory for input and output parameters
  1729.     to have less checks in mysql_stmt_bind_{param, result}.
  1730.   RETURN VALUES
  1731.     0  success
  1732.    !0  error
  1733. */
  1734. int STDCALL
  1735. mysql_stmt_prepare(MYSQL_STMT *stmt, const char *query, ulong length)
  1736. {
  1737.   MYSQL *mysql= stmt->mysql;
  1738.   DBUG_ENTER("mysql_stmt_prepare");
  1739.   if (!mysql)
  1740.   {
  1741.     /* mysql can be reset in mysql_close called from mysql_reconnect */
  1742.     set_stmt_error(stmt, CR_SERVER_LOST, unknown_sqlstate);
  1743.     DBUG_RETURN(1);
  1744.   }
  1745.   if ((int) stmt->state > (int) MYSQL_STMT_INIT_DONE)
  1746.   {
  1747.     /* This is second prepare with another statement */
  1748.     char buff[MYSQL_STMT_HEADER];               /* 4 bytes - stmt id */
  1749.     mysql_stmt_free_result(stmt);
  1750.     /*
  1751.       These members must be reset for API to
  1752.       function in case of error or misuse.
  1753.     */
  1754.     stmt->bind_param_done= stmt->bind_result_done= FALSE;
  1755.     stmt->param_count= stmt->field_count= 0;
  1756.     stmt->last_errno= 0;
  1757.     stmt->last_error[0]= '';
  1758.     free_root(&stmt->mem_root, MYF(MY_KEEP_PREALLOC));
  1759.     int4store(buff, stmt->stmt_id);
  1760.     /*
  1761.       If there was a 'use' result from another statement, or from
  1762.       mysql_use_result it won't be freed in mysql_stmt_free_result and
  1763.       we should get 'Commands out of sync' here.
  1764.     */
  1765.     if (simple_command(mysql, COM_CLOSE_STMT, buff, 4, 1))
  1766.     {
  1767.       set_stmt_errmsg(stmt, mysql->net.last_error, mysql->net.last_errno,
  1768.                       mysql->net.sqlstate);
  1769.       DBUG_RETURN(1);
  1770.     }
  1771.     stmt->state= MYSQL_STMT_INIT_DONE;
  1772.   }
  1773.   if (simple_command(mysql, COM_PREPARE, query, length, 1))
  1774.   {
  1775.     set_stmt_errmsg(stmt, mysql->net.last_error, mysql->net.last_errno,
  1776.                     mysql->net.sqlstate);
  1777.     DBUG_RETURN(1);
  1778.   }
  1779.   if ((*mysql->methods->read_prepare_result)(mysql, stmt))
  1780.   {
  1781.     set_stmt_errmsg(stmt, mysql->net.last_error, mysql->net.last_errno,
  1782.                     mysql->net.sqlstate);
  1783.     DBUG_RETURN(1);
  1784.   }
  1785.   /*
  1786.     alloc_root will return valid address even in case when param_count
  1787.     and field_count are zero. Thus we should never rely on stmt->bind
  1788.     or stmt->params when checking for existence of placeholders or
  1789.     result set.
  1790.   */
  1791.   if (!(stmt->params= (MYSQL_BIND *) alloc_root(&stmt->mem_root,
  1792. sizeof(MYSQL_BIND)*
  1793.                                                 (stmt->param_count +
  1794.                                                  stmt->field_count))))
  1795.   {
  1796.     set_stmt_error(stmt, CR_OUT_OF_MEMORY, unknown_sqlstate);
  1797.     DBUG_RETURN(1);
  1798.   }
  1799.   stmt->bind= stmt->params + stmt->param_count;
  1800.   stmt->state= MYSQL_STMT_PREPARE_DONE;
  1801.   DBUG_PRINT("info", ("Parameter count: %ld", stmt->param_count));
  1802.   DBUG_RETURN(0);
  1803. }
  1804. /*
  1805.   Get result set metadata from reply to mysql_stmt_execute.
  1806.   This is used mainly for SHOW commands, as metadata for these
  1807.   commands is sent only with result set.
  1808.   To be removed when all commands will fully support prepared mode.
  1809. */
  1810. static unsigned int alloc_stmt_fields(MYSQL_STMT *stmt)
  1811. {
  1812.   MYSQL_FIELD *fields, *field, *end;
  1813.   MEM_ROOT *alloc= &stmt->mem_root;
  1814.   MYSQL *mysql= stmt->mysql->last_used_con;
  1815.   stmt->field_count= mysql->field_count;
  1816.   /*
  1817.     Get the field information for non-select statements
  1818.     like SHOW and DESCRIBE commands
  1819.   */
  1820.   if (!(stmt->fields= (MYSQL_FIELD *) alloc_root(alloc,
  1821.  sizeof(MYSQL_FIELD) *
  1822.  stmt->field_count)) ||
  1823.       !(stmt->bind= (MYSQL_BIND *) alloc_root(alloc,
  1824.       sizeof(MYSQL_BIND) *
  1825.       stmt->field_count)))
  1826.     return 0;
  1827.   for (fields= mysql->fields, end= fields+stmt->field_count,
  1828.  field= stmt->fields;
  1829.        field && fields < end; fields++, field++)
  1830.   {
  1831.     field->db       = strdup_root(alloc,fields->db);
  1832.     field->table    = strdup_root(alloc,fields->table);
  1833.     field->org_table= strdup_root(alloc,fields->org_table);
  1834.     field->name     = strdup_root(alloc,fields->name);
  1835.     field->org_name = strdup_root(alloc,fields->org_name);
  1836.     field->charsetnr= fields->charsetnr;
  1837.     field->length   = fields->length;
  1838.     field->type     = fields->type;
  1839.     field->flags    = fields->flags;
  1840.     field->decimals = fields->decimals;
  1841.     field->def      = fields->def ? strdup_root(alloc,fields->def): 0;
  1842.     field->max_length= 0;
  1843.   }
  1844.   return stmt->field_count;
  1845. }
  1846. /*
  1847.   Update result set columns metadata if it was sent again in
  1848.   reply to COM_EXECUTE.
  1849. */
  1850. static void update_stmt_fields(MYSQL_STMT *stmt)
  1851. {
  1852.   MYSQL_FIELD *field= stmt->mysql->fields;
  1853.   MYSQL_FIELD *field_end= field + stmt->field_count;
  1854.   MYSQL_FIELD *stmt_field= stmt->fields;
  1855.   DBUG_ASSERT(stmt->field_count == stmt->mysql->field_count);
  1856.   for (; field < field_end; ++field, ++stmt_field)
  1857.   {
  1858.     stmt_field->charsetnr= field->charsetnr;
  1859.     stmt_field->length   = field->length;
  1860.     stmt_field->type     = field->type;
  1861.     stmt_field->flags    = field->flags;
  1862.     stmt_field->decimals = field->decimals;
  1863.   }
  1864. }
  1865. /*
  1866.   Returns prepared statement metadata in the form of a result set.
  1867.   SYNOPSIS
  1868.     mysql_stmt_result_metadata()
  1869.     stmt  statement handle
  1870.   DESCRIPTION
  1871.     This function should be used after mysql_stmt_execute().
  1872.     You can safely check that prepared statement has a result set by calling
  1873.     mysql_stmt_field_count(): if number of fields is not zero, you can call
  1874.     this function to get fields metadata.
  1875.     Next steps you may want to make:
  1876.     - find out number of columns in result set by calling
  1877.       mysql_num_fields(res) (the same value is returned by
  1878.       mysql_stmt_field_count())
  1879.     - fetch metadata for any column with mysql_fetch_field,
  1880.       mysql_fetch_field_direct, mysql_fetch_fields, mysql_field_seek.
  1881.     - free returned MYSQL_RES structure with mysql_free_result.
  1882.     - proceed to binding of output parameters.
  1883.   RETURN
  1884.     NULL  statement contains no result set or out of memory.
  1885.           In the latter case you can retreive error message
  1886.           with mysql_stmt_error.
  1887.     MYSQL_RES  a result set with no rows
  1888. */
  1889. MYSQL_RES * STDCALL
  1890. mysql_stmt_result_metadata(MYSQL_STMT *stmt)
  1891. {
  1892.   MYSQL_RES *result;
  1893.   DBUG_ENTER("mysql_stmt_result_metadata");
  1894.   /*
  1895.     stmt->fields is only defined if stmt->field_count is not null;
  1896.     stmt->field_count is initialized in prepare.
  1897.   */
  1898.   if (!stmt->field_count)
  1899.      DBUG_RETURN(0);
  1900.   if (!(result=(MYSQL_RES*) my_malloc(sizeof(*result),
  1901.                                       MYF(MY_WME | MY_ZEROFILL))))
  1902.   {
  1903.     set_stmt_error(stmt, CR_OUT_OF_MEMORY, unknown_sqlstate);
  1904.     DBUG_RETURN(0);
  1905.   }
  1906.   result->methods= stmt->mysql->methods;
  1907.   result->eof= 1;                      /* Marker for buffered */
  1908.   result->fields= stmt->fields;
  1909.   result->field_count= stmt->field_count;
  1910.   /* The rest of members of 'result' was bzeroed inside malloc */
  1911.   DBUG_RETURN(result);
  1912. }
  1913. /*
  1914.   Returns parameter columns meta information in the form of
  1915.   result set.
  1916.   SYNOPSYS
  1917.     mysql_stmt_param_metadata()
  1918.     stmt    statement handle
  1919.   DESCRIPTION
  1920.     This function can be called after you prepared the statement handle
  1921.     with mysql_stmt_prepare().
  1922.     XXX: not implemented yet.
  1923.   RETURN
  1924.     MYSQL_RES on success, 0 if there is no metadata.
  1925.     Currently this function always returns 0.
  1926. */
  1927. MYSQL_RES * STDCALL
  1928. mysql_stmt_param_metadata(MYSQL_STMT *stmt)
  1929. {
  1930.   DBUG_ENTER("mysql_stmt_param_metadata");
  1931.   if (!stmt->param_count)
  1932.     DBUG_RETURN(0);
  1933.   /*
  1934.     TODO: Fix this when server sends the information.
  1935.     Till then keep a dummy prototype.
  1936.   */
  1937.   DBUG_RETURN(0); 
  1938. }
  1939. /* Store type of parameter in network buffer. */
  1940. static void store_param_type(char **pos, MYSQL_BIND *param)
  1941. {
  1942.   uint typecode= param->buffer_type | (param->is_unsigned ? 32768 : 0);
  1943.   int2store(*pos, typecode);
  1944.   *pos+= 2;
  1945. }
  1946. /*
  1947.   Functions to store parameter data in network packet.
  1948.   SYNOPSIS
  1949.     store_param_xxx()
  1950.     net MySQL NET connection
  1951.     param MySQL bind param
  1952.   DESCRIPTION
  1953.     These funtions are invoked from mysql_stmt_execute() by
  1954.     MYSQL_BIND::store_param_func pointer. This pointer is set once per
  1955.     many executions in mysql_stmt_bind_param(). The caller must ensure
  1956.     that network buffer have enough capacity to store parameter
  1957.     (MYSQL_BIND::buffer_length contains needed number of bytes).
  1958. */
  1959. static void store_param_tinyint(NET *net, MYSQL_BIND *param)
  1960. {
  1961.   *(net->write_pos++)= *(uchar *) param->buffer;
  1962. }
  1963. static void store_param_short(NET *net, MYSQL_BIND *param)
  1964. {
  1965.   short value= *(short*) param->buffer;
  1966.   int2store(net->write_pos,value);
  1967.   net->write_pos+=2;
  1968. }
  1969. static void store_param_int32(NET *net, MYSQL_BIND *param)
  1970. {
  1971.   int32 value= *(int32*) param->buffer;
  1972.   int4store(net->write_pos,value);
  1973.   net->write_pos+=4;
  1974. }
  1975. static void store_param_int64(NET *net, MYSQL_BIND *param)
  1976. {
  1977.   longlong value= *(longlong*) param->buffer;
  1978.   int8store(net->write_pos,value);
  1979.   net->write_pos+= 8;
  1980. }
  1981. static void store_param_float(NET *net, MYSQL_BIND *param)
  1982. {
  1983.   float value= *(float*) param->buffer;
  1984.   float4store(net->write_pos, value);
  1985.   net->write_pos+= 4;
  1986. }
  1987. static void store_param_double(NET *net, MYSQL_BIND *param)
  1988. {
  1989.   double value= *(double*) param->buffer;
  1990.   float8store(net->write_pos, value);
  1991.   net->write_pos+= 8;
  1992. }
  1993. static void store_param_time(NET *net, MYSQL_BIND *param)
  1994. {
  1995.   MYSQL_TIME *tm= (MYSQL_TIME *) param->buffer;
  1996.   char buff[MAX_TIME_REP_LENGTH], *pos;
  1997.   uint length;
  1998.   pos= buff+1;
  1999.   pos[0]= tm->neg ? 1: 0;
  2000.   int4store(pos+1, tm->day);
  2001.   pos[5]= (uchar) tm->hour;
  2002.   pos[6]= (uchar) tm->minute;
  2003.   pos[7]= (uchar) tm->second;
  2004.   int4store(pos+8, tm->second_part);
  2005.   if (tm->second_part)
  2006.     length= 12;
  2007.   else if (tm->hour || tm->minute || tm->second || tm->day)
  2008.     length= 8;
  2009.   else
  2010.     length= 0;
  2011.   buff[0]= (char) length++;
  2012.   memcpy((char *)net->write_pos, buff, length);
  2013.   net->write_pos+= length;
  2014. }
  2015. static void net_store_datetime(NET *net, MYSQL_TIME *tm)
  2016. {
  2017.   char buff[MAX_DATETIME_REP_LENGTH], *pos;
  2018.   uint length;
  2019.   pos= buff+1;
  2020.   int2store(pos, tm->year);
  2021.   pos[2]= (uchar) tm->month;
  2022.   pos[3]= (uchar) tm->day;
  2023.   pos[4]= (uchar) tm->hour;
  2024.   pos[5]= (uchar) tm->minute;
  2025.   pos[6]= (uchar) tm->second;
  2026.   int4store(pos+7, tm->second_part);
  2027.   if (tm->second_part)
  2028.     length= 11;
  2029.   else if (tm->hour || tm->minute || tm->second)
  2030.     length= 7;
  2031.   else if (tm->year || tm->month || tm->day)
  2032.     length= 4;
  2033.   else
  2034.     length= 0;
  2035.   buff[0]= (char) length++;
  2036.   memcpy((char *)net->write_pos, buff, length);
  2037.   net->write_pos+= length;
  2038. }
  2039. static void store_param_date(NET *net, MYSQL_BIND *param)
  2040. {
  2041.   MYSQL_TIME *tm= (MYSQL_TIME *) param->buffer;
  2042.   tm->hour= tm->minute= tm->second= 0;
  2043.   tm->second_part= 0;
  2044.   net_store_datetime(net, tm);
  2045. }
  2046. static void store_param_datetime(NET *net, MYSQL_BIND *param)
  2047. {
  2048.   MYSQL_TIME *tm= (MYSQL_TIME *) param->buffer;
  2049.   net_store_datetime(net, tm);
  2050. }
  2051. static void store_param_str(NET *net, MYSQL_BIND *param)
  2052. {
  2053.   /* param->length is always set in mysql_stmt_bind_param */
  2054.   ulong length= *param->length;
  2055.   char *to= (char *) net_store_length((char *) net->write_pos, length);
  2056.   memcpy(to, param->buffer, length);
  2057.   net->write_pos= (uchar*) to+length;
  2058. }
  2059. /*
  2060.   Mark if the parameter is NULL.
  2061.   SYNOPSIS
  2062.     store_param_null()
  2063.     net MySQL NET connection
  2064.     param MySQL bind param
  2065.   DESCRIPTION
  2066.     A data package starts with a string of bits where we set a bit
  2067.     if a parameter is NULL. Unlike bit string in result set row, here
  2068.     we don't have reserved bits for OK/error packet.
  2069. */
  2070. static void store_param_null(NET *net, MYSQL_BIND *param)
  2071. {
  2072.   uint pos= param->param_number;
  2073.   net->buff[pos/8]|=  (uchar) (1 << (pos & 7));
  2074. }
  2075. /*
  2076.   Store one parameter in network packet: data is read from
  2077.   client buffer and saved in network packet by means of one
  2078.   of store_param_xxxx functions.
  2079. */
  2080. static my_bool store_param(MYSQL_STMT *stmt, MYSQL_BIND *param)
  2081. {
  2082.   NET *net= &stmt->mysql->net;
  2083.   DBUG_ENTER("store_param");
  2084.   DBUG_PRINT("enter",("type: %d, buffer:%lx, length: %lu  is_null: %d",
  2085.       param->buffer_type,
  2086.       param->buffer ? param->buffer : "0", *param->length,
  2087.       *param->is_null));
  2088.   if (*param->is_null)
  2089.     store_param_null(net, param);
  2090.   else
  2091.   {
  2092.     /*
  2093.       Param->length should ALWAYS point to the correct length for the type
  2094.       Either to the length pointer given by the user or param->buffer_length
  2095.     */
  2096.     if ((my_realloc_str(net, *param->length)))
  2097.     {
  2098.       set_stmt_error(stmt, net->last_errno, unknown_sqlstate);
  2099.       DBUG_RETURN(1);
  2100.     }
  2101.     (*param->store_param_func)(net, param);
  2102.   }
  2103.   DBUG_RETURN(0);
  2104. }
  2105. /*
  2106.   Auxilary function to send COM_EXECUTE packet to server and read reply.
  2107.   Used from cli_stmt_execute, which is in turn used by mysql_stmt_execute.
  2108. */
  2109. static my_bool execute(MYSQL_STMT *stmt, char *packet, ulong length)
  2110. {
  2111.   MYSQL *mysql= stmt->mysql;
  2112.   NET *net= &mysql->net;
  2113.   char buff[4 /* size of stmt id */ +
  2114.             5 /* execution flags */];
  2115.   DBUG_ENTER("execute");
  2116.   DBUG_PRINT("enter",("packet: %s, length :%d",packet ? packet :" ", length));
  2117.   mysql->last_used_con= mysql;
  2118.   int4store(buff, stmt->stmt_id); /* Send stmt id to server */
  2119.   buff[4]= (char) 0;                            /* no flags */
  2120.   int4store(buff+5, 1);                         /* iteration count */
  2121.   if (cli_advanced_command(mysql, COM_EXECUTE, buff, sizeof(buff),
  2122.                            packet, length, 1) ||
  2123.       (*mysql->methods->read_query_result)(mysql))
  2124.   {
  2125.     set_stmt_errmsg(stmt, net->last_error, net->last_errno, net->sqlstate);
  2126.     DBUG_RETURN(1);
  2127.   }
  2128.   stmt->affected_rows= mysql->affected_rows;
  2129.   stmt->insert_id= mysql->insert_id;
  2130.   DBUG_RETURN(0);
  2131. }
  2132. int cli_stmt_execute(MYSQL_STMT *stmt)
  2133. {
  2134.   DBUG_ENTER("cli_stmt_execute");
  2135.   if (stmt->param_count)
  2136.   {
  2137.     NET        *net= &stmt->mysql->net;
  2138.     MYSQL_BIND *param, *param_end;
  2139.     char       *param_data;
  2140.     ulong length;
  2141.     uint null_count;
  2142.     my_bool    result;
  2143.     if (!stmt->bind_param_done)
  2144.     {
  2145.       set_stmt_error(stmt, CR_PARAMS_NOT_BOUND, unknown_sqlstate);
  2146.       DBUG_RETURN(1);
  2147.     }
  2148.     if (stmt->mysql->status != MYSQL_STATUS_READY)
  2149.     {
  2150.       set_stmt_error(stmt, CR_COMMANDS_OUT_OF_SYNC, unknown_sqlstate);
  2151.       DBUG_RETURN(1);
  2152.     }
  2153.     net_clear(net); /* Sets net->write_pos */
  2154.     /* Reserve place for null-marker bytes */
  2155.     null_count= (stmt->param_count+7) /8;
  2156.     if (my_realloc_str(net, null_count + 1))
  2157.     {
  2158.       set_stmt_error(stmt, net->last_errno, unknown_sqlstate);
  2159.       DBUG_RETURN(1);
  2160.     }
  2161.     bzero((char*) net->write_pos, null_count);
  2162.     net->write_pos+= null_count;
  2163.     param_end= stmt->params + stmt->param_count;
  2164.     /* In case if buffers (type) altered, indicate to server */
  2165.     *(net->write_pos)++= (uchar) stmt->send_types_to_server;
  2166.     if (stmt->send_types_to_server)
  2167.     {
  2168.       if (my_realloc_str(net, 2 * stmt->param_count))
  2169.       {
  2170.         set_stmt_error(stmt, net->last_errno, unknown_sqlstate);
  2171.         DBUG_RETURN(1);
  2172.       }
  2173.       /*
  2174. Store types of parameters in first in first package
  2175. that is sent to the server.
  2176.       */
  2177.       for (param= stmt->params; param < param_end ; param++)
  2178.         store_param_type((char**) &net->write_pos, param);
  2179.     }
  2180.     for (param= stmt->params; param < param_end; param++)
  2181.     {
  2182.       /* check if mysql_stmt_send_long_data() was used */
  2183.       if (param->long_data_used)
  2184. param->long_data_used= 0; /* Clear for next execute call */
  2185.       else if (store_param(stmt, param))
  2186. DBUG_RETURN(1);
  2187.     }
  2188.     length= (ulong) (net->write_pos - net->buff);
  2189.     /* TODO: Look into avoding the following memdup */
  2190.     if (!(param_data= my_memdup((const char*) net->buff, length, MYF(0))))
  2191.     {
  2192.       set_stmt_error(stmt, CR_OUT_OF_MEMORY, unknown_sqlstate);
  2193.       DBUG_RETURN(1);
  2194.     }
  2195.     result= execute(stmt, param_data, length);
  2196.     stmt->send_types_to_server=0;
  2197.     my_free(param_data, MYF(MY_WME));
  2198.     DBUG_RETURN(result);
  2199.   }
  2200.   DBUG_RETURN((int) execute(stmt,0,0));
  2201. }
  2202. /*
  2203.   Read one row from buffered result set.  Result set is created by prior
  2204.   call to mysql_stmt_store_result().
  2205.   SYNOPSIS
  2206.     stmt_read_row_buffered()
  2207.   RETURN VALUE
  2208.     0             - success; *row is set to valid row pointer (row data
  2209.                     is stored in result set buffer)
  2210.     MYSQL_NO_DATA - end of result set. *row is set to NULL
  2211. */
  2212. static int stmt_read_row_buffered(MYSQL_STMT *stmt, unsigned char **row)
  2213. {
  2214.   if (stmt->data_cursor)
  2215.   {
  2216.     *row= (uchar *) stmt->data_cursor->data;
  2217.     stmt->data_cursor= stmt->data_cursor->next;
  2218.     return 0;
  2219.   }
  2220.   *row= 0;
  2221.   return MYSQL_NO_DATA;
  2222. }
  2223. /*
  2224.   Read one row from network: unbuffered non-cursor fetch.
  2225.   If last row was read, or error occured, erase this statement
  2226.   from record pointing to object unbuffered fetch is performed from.
  2227.   SYNOPSIS
  2228.     stmt_read_row_unbuffered()
  2229.     stmt  statement handle
  2230.     row   pointer to write pointer to row data;
  2231.   RETURN VALUE
  2232.     0           - success; *row contains valid address of a row;
  2233.                   row data is stored in network buffer
  2234.     1           - error; error code is written to
  2235.                   stmt->last_{errno,error}; *row is not changed
  2236.   MYSQL_NO_DATA - end of file was read from network;
  2237.                   *row is set to NULL
  2238. */
  2239. static int stmt_read_row_unbuffered(MYSQL_STMT *stmt, unsigned char **row)
  2240. {
  2241.   int rc= 1;
  2242.   MYSQL *mysql= stmt->mysql;
  2243.   /*
  2244.     This function won't be called if stmt->field_count is zero
  2245.     or execution wasn't done: this is ensured by mysql_stmt_execute.
  2246.   */
  2247.   if (!mysql)
  2248.   {
  2249.     set_stmt_error(stmt, CR_SERVER_LOST, unknown_sqlstate);
  2250.     return 1;
  2251.   }
  2252.   if (mysql->status != MYSQL_STATUS_GET_RESULT)
  2253.   {
  2254.     set_stmt_error(stmt, stmt->unbuffered_fetch_cancelled ?
  2255.                    CR_FETCH_CANCELED : CR_COMMANDS_OUT_OF_SYNC,
  2256.                    unknown_sqlstate);
  2257.     goto error;
  2258.   }
  2259.   if ((*mysql->methods->unbuffered_fetch)(mysql, (char**) row))
  2260.   {
  2261.     set_stmt_errmsg(stmt, mysql->net.last_error, mysql->net.last_errno,
  2262.                     mysql->net.sqlstate);
  2263.     /*
  2264.       If there was an error, there are no more pending rows:
  2265.       reset statement status to not hang up in following
  2266.       mysql_stmt_close (it will try to flush result set before
  2267.       closing the statement).
  2268.     */
  2269.     mysql->status= MYSQL_STATUS_READY;
  2270.     goto error;
  2271.   }
  2272.   if (!*row)
  2273.   {
  2274.     mysql->status= MYSQL_STATUS_READY;
  2275.     rc= MYSQL_NO_DATA;
  2276.     goto error;
  2277.   }
  2278.   return 0;
  2279. error:
  2280.   if (mysql->unbuffered_fetch_owner == &stmt->unbuffered_fetch_cancelled)
  2281.     mysql->unbuffered_fetch_owner= 0;
  2282.   return rc;
  2283. }
  2284. /*
  2285.   Default read row function to not SIGSEGV in client in
  2286.   case of wrong sequence of API calls.
  2287. */
  2288. static int
  2289. stmt_read_row_no_data(MYSQL_STMT *stmt  __attribute__((unused)),
  2290.                       unsigned char **row  __attribute__((unused)))
  2291. {
  2292.   if ((int) stmt->state < (int) MYSQL_STMT_PREPARE_DONE)
  2293.   {
  2294.     set_stmt_error(stmt, CR_NO_PREPARE_STMT, unknown_sqlstate);
  2295.     return 1;
  2296.   }
  2297.   return MYSQL_NO_DATA;
  2298. }
  2299. /*
  2300.   Get/set statement attributes
  2301.   SYNOPSIS
  2302.     mysql_stmt_attr_get()
  2303.     mysql_stmt_attr_set()
  2304.     attr_type  statement attribute
  2305.     value      casted to const void * pointer to value.
  2306.   RETURN VALUE
  2307.     0 success
  2308.    !0 wrong attribute type
  2309. */
  2310. my_bool STDCALL mysql_stmt_attr_set(MYSQL_STMT *stmt,
  2311.                                     enum enum_stmt_attr_type attr_type,
  2312.                                     const void *value)
  2313. {
  2314.   switch (attr_type) {
  2315.   case STMT_ATTR_UPDATE_MAX_LENGTH:
  2316.     stmt->update_max_length= value ? *(const my_bool*) value : 0;
  2317.     break;
  2318.   default:
  2319.     return TRUE;
  2320.   }
  2321.   return FALSE;
  2322. }
  2323. my_bool STDCALL mysql_stmt_attr_get(MYSQL_STMT *stmt,
  2324.                                     enum enum_stmt_attr_type attr_type,
  2325.                                     void *value)
  2326. {
  2327.   switch (attr_type) {
  2328.   case STMT_ATTR_UPDATE_MAX_LENGTH:
  2329.     *(unsigned long *) value= stmt->update_max_length;
  2330.     break;
  2331.   default:
  2332.     return TRUE;
  2333.   }
  2334.   return FALSE;
  2335. }
  2336. /*
  2337.   Send placeholders data to server (if there are placeholders)
  2338.   and execute prepared statement.
  2339.   SYNOPSIS
  2340.     mysql_stmt_execute()
  2341.     stmt  statement handle. The handle must be created
  2342.           with mysql_stmt_init() and prepared with
  2343.           mysql_stmt_prepare(). If there are placeholders
  2344.           in the statement they must be bound to local
  2345.           variables with mysql_stmt_bind_param().
  2346.   DESCRIPTION
  2347.     This function will automatically flush pending result
  2348.     set (if there is one), send parameters data to the server
  2349.     and read result of statement execution.
  2350.     If previous result set was cached with mysql_stmt_store_result()
  2351.     it will also be freed in the beginning of this call.
  2352.     The server can return 3 types of responses to this command:
  2353.     - error, can be retrieved with mysql_stmt_error()
  2354.     - ok, no result set pending. In this case we just update
  2355.       stmt->insert_id and stmt->affected_rows.
  2356.     - the query returns a result set: there could be 0 .. N
  2357.     rows in it. In this case the server can also send updated
  2358.     result set metadata.
  2359.     Next steps you may want to make:
  2360.     - find out if there is result set with mysql_stmt_field_count().
  2361.     If there is one:
  2362.     - optionally, cache entire result set on client to unblock
  2363.     connection with mysql_stmt_store_result()
  2364.     - bind client variables to result set columns and start read rows
  2365.     with mysql_stmt_fetch().
  2366.     - reset statement with mysql_stmt_reset() or close it with
  2367.     mysql_stmt_close()
  2368.     Otherwise:
  2369.     - find out last insert id and number of affected rows with
  2370.     mysql_stmt_insert_id(), mysql_stmt_affected_rows()
  2371.   RETURN
  2372.     0   success
  2373.     1   error, message can be retrieved with mysql_stmt_error().
  2374. */
  2375. int STDCALL mysql_stmt_execute(MYSQL_STMT *stmt)
  2376. {
  2377.   MYSQL *mysql= stmt->mysql;
  2378.   DBUG_ENTER("mysql_stmt_execute");
  2379.   if (!mysql)
  2380.   {
  2381.     set_stmt_error(stmt, CR_SERVER_LOST, unknown_sqlstate);
  2382.     DBUG_RETURN(1);
  2383.   }
  2384.   mysql_stmt_free_result(stmt);
  2385.   /*
  2386.     No need to check for stmt->state: if the statement wasn't
  2387.     prepared we'll get 'unknown statement handler' error from server.
  2388.   */
  2389.   if (mysql->methods->stmt_execute(stmt))
  2390.     DBUG_RETURN(1);
  2391.   if (mysql->field_count)
  2392.   {
  2393.     /* Server has sent result set metadata */
  2394.     if (stmt->field_count == 0)
  2395.     {
  2396.       /*
  2397.         This is 'SHOW'/'EXPLAIN'-like query. Current implementation of
  2398.         prepared statements can't send result set metadata for these queries
  2399.         on prepare stage. Read it now.
  2400.       */
  2401.       alloc_stmt_fields(stmt);
  2402.     }
  2403.     else
  2404.     {
  2405.       /*
  2406.         Update result set metadata if it for some reason changed between
  2407.         prepare and execute, i.e.:
  2408.         - in case of 'SELECT ?' we don't know column type unless data was
  2409.           supplied to mysql_stmt_execute, so updated column type is sent
  2410.           now.
  2411.         - if data dictionary changed between prepare and execute, for
  2412.           example a table used in the query was altered.
  2413.         Note, that now (4.1.3) we always send metadata in reply to
  2414.         COM_EXECUTE (even if it is not necessary), so either this or
  2415.         previous branch always works.
  2416.         TODO: send metadata only when it's really necessary and add a warning
  2417.         'Metadata changed' when it's sent twice.
  2418.       */
  2419.       update_stmt_fields(stmt);
  2420.     }
  2421.   }
  2422.   stmt->state= MYSQL_STMT_EXECUTE_DONE;
  2423.   if (stmt->field_count)
  2424.   {
  2425.     stmt->mysql->unbuffered_fetch_owner= &stmt->unbuffered_fetch_cancelled;
  2426.     stmt->unbuffered_fetch_cancelled= FALSE;
  2427.     stmt->read_row_func= stmt_read_row_unbuffered;
  2428.   }
  2429.   DBUG_RETURN(0);
  2430. }
  2431. /*
  2432.   Return total parameters count in the statement
  2433. */
  2434. ulong STDCALL mysql_stmt_param_count(MYSQL_STMT * stmt)
  2435. {
  2436.   DBUG_ENTER("mysql_stmt_param_count");
  2437.   DBUG_RETURN(stmt->param_count);
  2438. }
  2439. /*
  2440.   Return total affected rows from the last statement
  2441. */
  2442. my_ulonglong STDCALL mysql_stmt_affected_rows(MYSQL_STMT *stmt)
  2443. {
  2444.   return stmt->affected_rows;
  2445. }
  2446. /*
  2447.   Returns the number of result columns for the most recent query
  2448.   run on this statement.
  2449. */
  2450. unsigned int STDCALL mysql_stmt_field_count(MYSQL_STMT *stmt)
  2451. {
  2452.   return stmt->field_count;
  2453. }
  2454. /*
  2455.   Return last inserted id for auto_increment columns.
  2456.   SYNOPSIS
  2457.     mysql_stmt_insert_id()
  2458.     stmt    statement handle
  2459.   DESCRIPTION
  2460.     Current implementation of this call has a caveat: stmt->insert_id is
  2461.     unconditionally updated from mysql->insert_id in the end of each
  2462.     mysql_stmt_execute(). This works OK if mysql->insert_id contains new
  2463.     value (sent in reply to mysql_stmt_execute()), otherwise stmt->insert_id
  2464.     value gets undefined, as it's updated from some arbitrary value saved in
  2465.     connection structure during some other call.
  2466. */
  2467. my_ulonglong STDCALL mysql_stmt_insert_id(MYSQL_STMT *stmt)
  2468. {
  2469.   return stmt->insert_id;
  2470. }
  2471. static my_bool int_is_null_true= 1; /* Used for MYSQL_TYPE_NULL */
  2472. static my_bool int_is_null_false= 0;
  2473. /*
  2474.   Set up input data buffers for a statement.
  2475.   SYNOPSIS
  2476.     mysql_stmt_bind_param()
  2477.     stmt    statement handle
  2478.             The statement must be prepared with mysql_stmt_prepare().
  2479.     bind    Array of mysql_stmt_param_count() bind parameters.
  2480.             This function doesn't check that size of this argument
  2481.             is >= mysql_stmt_field_count(): it's user's responsibility.
  2482.   DESCRIPTION
  2483.     Use this call after mysql_stmt_prepare() to bind user variables to
  2484.     placeholders.
  2485.     Each element of bind array stands for a placeholder. Placeholders
  2486.     are counted from 0.  For example statement
  2487.     'INSERT INTO t (a, b) VALUES (?, ?)'
  2488.     contains two placeholders, and for such statement you should supply
  2489.     bind array of two elements (MYSQL_BIND bind[2]).
  2490.     By properly initializing bind array you can bind virtually any
  2491.     C language type to statement's placeholders:
  2492.     First, it's strongly recommended to always zero-initialize entire
  2493.     bind structure before setting its members. This will both shorten
  2494.     your application code and make it robust to future extensions of
  2495.     MYSQL_BIND structure.
  2496.     Then you need to assign typecode of your application buffer to
  2497.     MYSQL_BIND::buffer_type. The following typecodes with their
  2498.     correspondence to C language types are supported:
  2499.     MYSQL_TYPE_TINY       for 8-bit integer variables. Normally it's
  2500.                           'signed char' and 'unsigned char';
  2501.     MYSQL_TYPE_SHORT      for 16-bit signed and unsigned variables. This
  2502.                           is usually 'short' and 'unsigned short';
  2503.     MYSQL_TYPE_LONG       for 32-bit signed and unsigned variables. It
  2504.                           corresponds to 'int' and 'unsigned int' on
  2505.                           vast majority of platforms. On IA-32 and some
  2506.                           other 32-bit systems you can also use 'long'
  2507.                           here;
  2508.     MYSQL_TYPE_LONGLONG   64-bit signed or unsigned integer.  Stands for
  2509.                           '[unsigned] long long' on most platforms;
  2510.     MYSQL_TYPE_FLOAT      32-bit floating point type, 'float' on most
  2511.                           systems;
  2512.     MYSQL_TYPE_DOUBLE     64-bit floating point type, 'double' on most
  2513.                           systems;
  2514.     MYSQL_TYPE_TIME       broken-down time stored in MYSQL_TIME
  2515.                           structure
  2516.     MYSQL_TYPE_DATE       date stored in MYSQL_TIME structure
  2517.     MYSQL_TYPE_DATETIME   datetime stored in MYSQL_TIME structure See
  2518.                           more on how to use these types for sending
  2519.                           dates and times below;
  2520.     MYSQL_TYPE_STRING     character string, assumed to be in
  2521.                           character-set-client. If character set of
  2522.                           client is not equal to character set of
  2523.                           column, value for this placeholder will be
  2524.                           converted to destination character set before
  2525.                           insert.
  2526.     MYSQL_TYPE_BLOB       sequence of bytes. This sequence is assumed to
  2527.                           be in binary character set (which is the same
  2528.                           as no particular character set), and is never
  2529.                           converted to any other character set. See also
  2530.                           notes about supplying string/blob length
  2531.                           below.
  2532.     MYSQL_TYPE_NULL       special typecode for binding nulls.
  2533.     These C/C++ types are not supported yet by the API: long double,
  2534.     bool.
  2535.     As you can see from the list above, it's responsibility of
  2536.     application programmer to ensure that chosen typecode properly
  2537.     corresponds to host language type. For example on all platforms
  2538.     where we build MySQL packages (as of MySQL 4.1.4) int is a 32-bit
  2539.     type. So for int you can always assume that proper typecode is
  2540.     MYSQL_TYPE_LONG (however queer it sounds, the name is legacy of the
  2541.     old MySQL API). In contrary sizeof(long) can be 4 or 8 8-bit bytes,
  2542.     depending on platform.
  2543.     TODO: provide client typedefs for each integer and floating point
  2544.     typecode, i. e. int8, uint8, float32, etc.
  2545.     Once typecode was set, it's necessary to assign MYSQL_BIND::buffer
  2546.     to point to the buffer of given type. Finally, additional actions
  2547.     may be taken for some types or use cases:
  2548.       Binding integer types.
  2549.     For integer types you might also need to set MYSQL_BIND::is_unsigned
  2550.     member. Set it to TRUE when binding unsigned char, unsigned short,
  2551.     unsigned int, unsigned long, unsigned long long.
  2552.       Binding floating point types.
  2553.     For floating point types you just need to set
  2554.     MYSQL_BIND::buffer_type and MYSQL_BIND::buffer. The rest of the
  2555.     members should be zero-initialized.
  2556.       Binding NULLs.
  2557.     You might have a column always NULL, never NULL, or sometimes NULL.
  2558.     For an always NULL column set MYSQL_BIND::buffer_type to
  2559.     MYSQL_TYPE_NULL.  The rest of the members just need to be
  2560.     zero-initialized.  For never NULL columns set MYSQL_BIND::is_null to
  2561.     0, or this has already been done if you zero-initialized the entire
  2562.     structure.  If you set MYSQL_TYPE::is_null to point to an
  2563.     application buffer of type 'my_bool', then this buffer will be
  2564.     checked on each execution: this way you can set the buffer to TRUE,
  2565.     or any non-0 value for NULLs, and to FALSE or 0 for not NULL data.
  2566.       Binding text strings and sequences of bytes.
  2567.     For strings, in addition to MYSQL_BIND::buffer_type and
  2568.     MYSQL_BIND::buffer you need to set MYSQL_BIND::length or
  2569.     MYSQL_BIND::buffer_length.
  2570.     If 'length' is set, 'buffer_length' is ignored. 'buffer_length'
  2571.     member should be used when size of string doesn't change between
  2572.     executions. If you want to vary buffer length for each value, set
  2573.     'length' to point to an application buffer of type 'unsigned long'
  2574.     and set this long to length of the string before each
  2575.     mysql_stmt_execute().
  2576.       Binding dates and times.
  2577.     For binding dates and times prepared statements API provides clients
  2578.     with MYSQL_TIME structure. A pointer to instance of this structure
  2579.     should be assigned to MYSQL_BIND::buffer whenever MYSQL_TYPE_TIME,
  2580.     MYSQL_TYPE_DATE, MYSQL_TYPE_DATETIME typecodes are used.  When
  2581.     typecode is MYSQL_TYPE_TIME, only members 'hour', 'minute', 'second'
  2582.     and 'neg' (is time offset negative) are used. These members only
  2583.     will be sent to the server.
  2584.     MYSQL_TYPE_DATE implies use of 'year', 'month', 'day', 'neg'.
  2585.     MYSQL_TYPE_DATETIME utilizes both parts of MYSQL_TIME structure.
  2586.     You don't have to set MYSQL_TIME::time_type member: it's not used
  2587.     when sending data to the server, typecode information is enough.
  2588.     'second_part' member can hold microsecond precision of time value,
  2589.     but now it's only supported on protocol level: you can't store
  2590.     microsecond in a column, or use in temporal calculations. However,
  2591.     if you send a time value with microsecond part for 'SELECT ?',
  2592.     statement, you'll get it back unchanged from the server.
  2593.       Data conversion.
  2594.     If conversion from host language type to data representation,
  2595.     corresponding to SQL type, is required it's done on the server.
  2596.     Data truncation is possible when conversion is lossy. For example,
  2597.     if you supply MYSQL_TYPE_DATETIME value out of valid SQL type
  2598.     TIMESTAMP range, the same conversion will be applied as if this
  2599.     value would have been sent as string in the old protocol.
  2600.     TODO: document how the server will behave in case of truncation/data
  2601.     loss.
  2602.     After variables were bound, you can repeatedly set/change their
  2603.     values and mysql_stmt_execute() the statement.
  2604.     See also: mysql_stmt_send_long_data() for sending long text/blob
  2605.     data in pieces, examples in tests/mysql_client_test.c.
  2606.     Next steps you might want to make:
  2607.     - execute statement with mysql_stmt_execute(),
  2608.     - reset statement using mysql_stmt_reset() or reprepare it with
  2609.       another query using mysql_stmt_prepare()
  2610.     - close statement with mysql_stmt_close().
  2611.   IMPLEMENTATION
  2612.     The function copies given bind array to internal storage of the
  2613.     statement, and sets up typecode-specific handlers to perform
  2614.     serialization of bound data. This means that although you don't need
  2615.     to call this routine after each assignment to bind buffers, you
  2616.     need to call it each time you change parameter typecodes, or other
  2617.     members of MYSQL_BIND array.
  2618.     This is a pure local call. Data types of client buffers are sent
  2619.     along with buffers' data at first execution of the statement.
  2620.   RETURN
  2621.     0  success
  2622.     1  error, can be retrieved with mysql_stmt_error.
  2623. */
  2624. my_bool STDCALL mysql_stmt_bind_param(MYSQL_STMT *stmt, MYSQL_BIND *bind)
  2625. {
  2626.   uint count=0;
  2627.   MYSQL_BIND *param, *end;
  2628.   DBUG_ENTER("mysql_stmt_bind_param");
  2629.   if (!stmt->param_count)
  2630.   {
  2631.     if ((int) stmt->state < (int) MYSQL_STMT_PREPARE_DONE)
  2632.     {
  2633.       set_stmt_error(stmt, CR_NO_PREPARE_STMT, unknown_sqlstate);
  2634.       DBUG_RETURN(1);
  2635.     }
  2636.     DBUG_RETURN(0);
  2637.   }
  2638.   /* Allocated on prepare */
  2639.   memcpy((char*) stmt->params, (char*) bind,
  2640.  sizeof(MYSQL_BIND) * stmt->param_count);
  2641.   for (param= stmt->params, end= param+stmt->param_count;
  2642.        param < end ;
  2643.        param++)
  2644.   {
  2645.     param->param_number= count++;
  2646.     param->long_data_used= 0;
  2647.     /* If param->is_null is not set, then the value can never be NULL */
  2648.     if (!param->is_null)
  2649.       param->is_null= &int_is_null_false;
  2650.     /* Setup data copy functions for the different supported types */
  2651.     switch (param->buffer_type) {
  2652.     case MYSQL_TYPE_NULL:
  2653.       param->is_null= &int_is_null_true;
  2654.       break;
  2655.     case MYSQL_TYPE_TINY:
  2656.       /* Force param->length as this is fixed for this type */
  2657.       param->length= &param->buffer_length;
  2658.       param->buffer_length= 1;
  2659.       param->store_param_func= store_param_tinyint;
  2660.       break;
  2661.     case MYSQL_TYPE_SHORT:
  2662.       param->length= &param->buffer_length;
  2663.       param->buffer_length= 2;
  2664.       param->store_param_func= store_param_short;
  2665.       break;
  2666.     case MYSQL_TYPE_LONG:
  2667.       param->length= &param->buffer_length;
  2668.       param->buffer_length= 4;
  2669.       param->store_param_func= store_param_int32;
  2670.       break;
  2671.     case MYSQL_TYPE_LONGLONG:
  2672.       param->length= &param->buffer_length;
  2673.       param->buffer_length= 8;
  2674.       param->store_param_func= store_param_int64;
  2675.       break;
  2676.     case MYSQL_TYPE_FLOAT:
  2677.       param->length= &param->buffer_length;
  2678.       param->buffer_length= 4;
  2679.       param->store_param_func= store_param_float;
  2680.       break;
  2681.     case MYSQL_TYPE_DOUBLE:
  2682.       param->length= &param->buffer_length;
  2683.       param->buffer_length= 8;
  2684.       param->store_param_func= store_param_double;
  2685.       break;
  2686.     case MYSQL_TYPE_TIME:
  2687.       param->store_param_func= store_param_time;
  2688.       param->buffer_length= MAX_TIME_REP_LENGTH;
  2689.       break;
  2690.     case MYSQL_TYPE_DATE:
  2691.       param->store_param_func= store_param_date;
  2692.       param->buffer_length= MAX_DATE_REP_LENGTH;
  2693.       break;
  2694.     case MYSQL_TYPE_DATETIME:
  2695.     case MYSQL_TYPE_TIMESTAMP:
  2696.       param->store_param_func= store_param_datetime;
  2697.       param->buffer_length= MAX_DATETIME_REP_LENGTH;
  2698.       break;
  2699.     case MYSQL_TYPE_TINY_BLOB:
  2700.     case MYSQL_TYPE_MEDIUM_BLOB:
  2701.     case MYSQL_TYPE_LONG_BLOB:
  2702.     case MYSQL_TYPE_BLOB:
  2703.     case MYSQL_TYPE_VAR_STRING:
  2704.     case MYSQL_TYPE_STRING:
  2705.       param->store_param_func= store_param_str;
  2706.       /*
  2707.         For variable length types user must set either length or
  2708.         buffer_length.
  2709.       */
  2710.       break;
  2711.     default:
  2712.       strmov(stmt->sqlstate, unknown_sqlstate);
  2713.       sprintf(stmt->last_error,
  2714.       ER(stmt->last_errno= CR_UNSUPPORTED_PARAM_TYPE),
  2715.       param->buffer_type, count);
  2716.       DBUG_RETURN(1);
  2717.     }
  2718.     /*
  2719.       If param->length is not given, change it to point to buffer_length.
  2720.       This way we can always use *param->length to get the length of data
  2721.     */
  2722.     if (!param->length)
  2723.       param->length= &param->buffer_length;
  2724.   }
  2725.   /* We have to send/resend type information to MySQL */
  2726.   stmt->send_types_to_server= TRUE;
  2727.   stmt->bind_param_done= TRUE;
  2728.   DBUG_RETURN(0);
  2729. }
  2730. /********************************************************************
  2731.  Long data implementation
  2732. *********************************************************************/
  2733. /*
  2734.   Send long data in pieces to the server
  2735.   SYNOPSIS
  2736.     mysql_stmt_send_long_data()
  2737.     stmt Statement handler
  2738.     param_number Parameter number (0 - N-1)
  2739.     data Data to send to server
  2740.     length Length of data to send (may be 0)
  2741.   DESCRIPTION
  2742.     This call can be used repeatedly to send long data in pieces
  2743.     for any string/binary placeholder. Data supplied for
  2744.     a placeholder is saved at server side till execute, and then
  2745.     used instead of value from MYSQL_BIND object. More precisely,
  2746.     if long data for a parameter was supplied, MYSQL_BIND object
  2747.     corresponding to this parameter is not sent to server. In the
  2748.     end of execution long data states of placeholders are reset,
  2749.     so next time values of such placeholders will be taken again
  2750.     from MYSQL_BIND array.
  2751.     The server does not reply to this call: if there was an error
  2752.     in data handling (which now only can happen if server run out
  2753.     of memory) it would be returned in reply to
  2754.     mysql_stmt_execute().
  2755.     You should choose type of long data carefully if you care
  2756.     about character set conversions performed by server when the
  2757.     statement is executed.  No conversion is performed at all for
  2758.     MYSQL_TYPE_BLOB and other binary typecodes. For
  2759.     MYSQL_TYPE_STRING and the rest of text placeholders data is
  2760.     converted from client character set to character set of
  2761.     connection. If these character sets are different, this
  2762.     conversion may require additional memory at server, equal to
  2763.     total size of supplied pieces.
  2764.   RETURN VALUES
  2765.     0 ok
  2766.     1 error
  2767. */
  2768. my_bool STDCALL
  2769. mysql_stmt_send_long_data(MYSQL_STMT *stmt, uint param_number,
  2770.      const char *data, ulong length)
  2771. {
  2772.   MYSQL_BIND *param;
  2773.   DBUG_ENTER("mysql_stmt_send_long_data");
  2774.   DBUG_ASSERT(stmt != 0);
  2775.   DBUG_PRINT("enter",("param no : %d, data : %lx, length : %ld",
  2776.       param_number, data, length));
  2777.   /*
  2778.     We only need to check for stmt->param_count, if it's not null
  2779.     prepare was done.
  2780.   */
  2781.   if (param_number >= stmt->param_count)
  2782.   {
  2783.     set_stmt_error(stmt, CR_INVALID_PARAMETER_NO, unknown_sqlstate);
  2784.     DBUG_RETURN(1);
  2785.   }
  2786.   param= stmt->params+param_number;
  2787.   if (param->buffer_type < MYSQL_TYPE_TINY_BLOB ||
  2788.       param->buffer_type > MYSQL_TYPE_STRING)
  2789.   {
  2790.     /* Long data handling should be used only for string/binary types */
  2791.     strmov(stmt->sqlstate, unknown_sqlstate);
  2792.     sprintf(stmt->last_error, ER(stmt->last_errno= CR_INVALID_BUFFER_USE),
  2793.     param->param_number);
  2794.     DBUG_RETURN(1);
  2795.   }
  2796.   /*
  2797.     Send long data packet if there is data or we're sending long data
  2798.     for the first time.
  2799.   */
  2800.   if (length || param->long_data_used == 0)
  2801.   {
  2802.     MYSQL *mysql= stmt->mysql;
  2803.     /* Packet header: stmt id (4 bytes), param no (2 bytes) */
  2804.     char buff[MYSQL_LONG_DATA_HEADER];
  2805.     int4store(buff, stmt->stmt_id);
  2806.     int2store(buff + 4, param_number);
  2807.     param->long_data_used= 1;
  2808.     /*
  2809.       Note that we don't get any ok packet from the server in this case
  2810.       This is intentional to save bandwidth.
  2811.     */
  2812.     if ((*mysql->methods->advanced_command)(mysql, COM_LONG_DATA, buff,
  2813.     sizeof(buff), data, length, 1))
  2814.     {
  2815.       set_stmt_errmsg(stmt, mysql->net.last_error,
  2816.       mysql->net.last_errno, mysql->net.sqlstate);
  2817.       DBUG_RETURN(1);
  2818.     }
  2819.   }
  2820.   DBUG_RETURN(0);
  2821. }
  2822. /********************************************************************
  2823.  Fetch and conversion of result set rows (binary protocol).
  2824. *********************************************************************/
  2825. /*
  2826.   Read date, (time, datetime) value from network buffer and store it
  2827.   in MYSQL_TIME structure.
  2828.   SYNOPSIS
  2829.     read_binary_{date,time,datetime}()
  2830.     tm    MYSQL_TIME structure to fill
  2831.     pos   pointer to current position in network buffer.
  2832.           These functions increase pos to point to the beginning of the
  2833.           next column.
  2834.   Auxiliary functions to read time (date, datetime) values from network
  2835.   buffer and store in MYSQL_TIME structure. Jointly used by conversion
  2836.   and no-conversion fetching.
  2837. */
  2838. static void read_binary_time(MYSQL_TIME *tm, uchar **pos)
  2839. {
  2840.   /* net_field_length will set pos to the first byte of data */
  2841.   uint length= net_field_length(pos);
  2842.   if (length)
  2843.   {
  2844.     uchar *to= *pos;
  2845.     tm->neg= (bool) to[0];
  2846.     tm->day=    (ulong) sint4korr(to+1);
  2847.     tm->hour=   (uint) to[5];
  2848.     tm->minute= (uint) to[6];
  2849.     tm->second= (uint) to[7];
  2850.     tm->second_part= (length > 8) ? (ulong) sint4korr(to+8) : 0;
  2851.     tm->year= tm->month= 0;
  2852.     if (tm->day)
  2853.     {
  2854.       /* Convert days to hours at once */
  2855.       tm->hour+= tm->day*24;
  2856.       tm->day= 0;
  2857.     }
  2858.     tm->time_type= MYSQL_TIMESTAMP_TIME;
  2859.     *pos+= length;
  2860.   }
  2861.   else
  2862.     set_zero_time(tm, MYSQL_TIMESTAMP_TIME);
  2863. }
  2864. static void read_binary_datetime(MYSQL_TIME *tm, uchar **pos)
  2865. {
  2866.   uint length= net_field_length(pos);
  2867.   if (length)
  2868.   {
  2869.     uchar *to= *pos;
  2870.     tm->neg=    0;
  2871.     tm->year=   (uint) sint2korr(to);
  2872.     tm->month=  (uint) to[2];
  2873.     tm->day=    (uint) to[3];
  2874.     if (length > 4)
  2875.     {
  2876.       tm->hour=   (uint) to[4];
  2877.       tm->minute= (uint) to[5];
  2878.       tm->second= (uint) to[6];
  2879.     }
  2880.     else
  2881.       tm->hour= tm->minute= tm->second= 0;
  2882.     tm->second_part= (length > 7) ? (ulong) sint4korr(to+7) : 0;
  2883.     tm->time_type= MYSQL_TIMESTAMP_DATETIME;
  2884.     *pos+= length;
  2885.   }
  2886.   else
  2887.     set_zero_time(tm, MYSQL_TIMESTAMP_DATETIME);
  2888. }
  2889. static void read_binary_date(MYSQL_TIME *tm, uchar **pos)
  2890. {
  2891.   uint length= net_field_length(pos);
  2892.   if (length)
  2893.   {
  2894.     uchar *to= *pos;
  2895.     tm->year =  (uint) sint2korr(to);
  2896.     tm->month=  (uint) to[2];
  2897.     tm->day= (uint) to[3];
  2898.     tm->hour= tm->minute= tm->second= 0;
  2899.     tm->second_part= 0;
  2900.     tm->neg= 0;
  2901.     tm->time_type= MYSQL_TIMESTAMP_DATE;
  2902.     *pos+= length;
  2903.   }
  2904.   else
  2905.     set_zero_time(tm, MYSQL_TIMESTAMP_DATE);
  2906. }
  2907. /*
  2908.   Convert string to supplied buffer of any type.
  2909.   SYNOPSIS
  2910.     fetch_string_with_conversion()
  2911.     param   output buffer descriptor
  2912.     value   column data
  2913.     length  data length
  2914. */
  2915. static void fetch_string_with_conversion(MYSQL_BIND *param, char *value,
  2916.                                          uint length)
  2917. {
  2918.   char *buffer= (char *)param->buffer;
  2919.   int err= 0;
  2920.   /*
  2921.     This function should support all target buffer types: the rest
  2922.     of conversion functions can delegate conversion to it.
  2923.   */
  2924.   switch(param->buffer_type) {
  2925.   case MYSQL_TYPE_NULL: /* do nothing */
  2926.     break;
  2927.   case MYSQL_TYPE_TINY:
  2928.   {
  2929.     uchar data= (uchar) my_strntol(&my_charset_latin1, value, length, 10,
  2930.                                    NULL, &err);
  2931.     *buffer= data;
  2932.     break;
  2933.   }
  2934.   case MYSQL_TYPE_SHORT:
  2935.   {
  2936.     short data= (short) my_strntol(&my_charset_latin1, value, length, 10,
  2937.                                    NULL, &err);
  2938.     shortstore(buffer, data);
  2939.     break;
  2940.   }
  2941.   case MYSQL_TYPE_LONG:
  2942.   {
  2943.     int32 data= (int32)my_strntol(&my_charset_latin1, value, length, 10,
  2944.                                   NULL, &err);
  2945.     longstore(buffer, data);
  2946.     break;
  2947.   }
  2948.   case MYSQL_TYPE_LONGLONG:
  2949.   {
  2950.     longlong data= my_strntoll(&my_charset_latin1, value, length, 10,
  2951.                                NULL, &err);
  2952.     longlongstore(buffer, data);
  2953.     break;
  2954.   }
  2955.   case MYSQL_TYPE_FLOAT:
  2956.   {
  2957.     char *end_not_used;
  2958.     float data = (float) my_strntod(&my_charset_latin1, value, length,
  2959.                                     &end_not_used, &err);
  2960.     floatstore(buffer, data);
  2961.     break;
  2962.   }
  2963.   case MYSQL_TYPE_DOUBLE:
  2964.   {
  2965.     char *end_not_used;
  2966.     double data= my_strntod(&my_charset_latin1, value, length, &end_not_used,
  2967.                             &err);
  2968.     doublestore(buffer, data);
  2969.     break;
  2970.   }
  2971.   case MYSQL_TYPE_TIME:
  2972.   {
  2973.     MYSQL_TIME *tm= (MYSQL_TIME *)buffer;
  2974.     str_to_time(value, length, tm, &err);
  2975.     break;
  2976.   }
  2977.   case MYSQL_TYPE_DATE:
  2978.   case MYSQL_TYPE_DATETIME:
  2979.   case MYSQL_TYPE_TIMESTAMP:
  2980.   {
  2981.     MYSQL_TIME *tm= (MYSQL_TIME *)buffer;
  2982.     str_to_datetime(value, length, tm, 0, &err);
  2983.     break;
  2984.   }
  2985.   case MYSQL_TYPE_TINY_BLOB:
  2986.   case MYSQL_TYPE_MEDIUM_BLOB:
  2987.   case MYSQL_TYPE_LONG_BLOB:
  2988.   case MYSQL_TYPE_BLOB:
  2989.   default:
  2990.   {
  2991.     /*
  2992.       Copy column data to the buffer taking into account offset,
  2993.       data length and buffer length.
  2994.     */
  2995.     char *start= value + param->offset;
  2996.     char *end= value + length;
  2997.     ulong copy_length;
  2998.     if (start < end)
  2999.     {
  3000.       copy_length= end - start;
  3001.       /* We've got some data beyond offset: copy up to buffer_length bytes */
  3002.       if (param->buffer_length)
  3003.         memcpy(buffer, start, min(copy_length, param->buffer_length));
  3004.     }
  3005.     else
  3006.       copy_length= 0;
  3007.     if (copy_length < param->buffer_length)
  3008.       buffer[copy_length]= '';
  3009.     /*
  3010.       param->length will always contain length of entire column;
  3011.       number of copied bytes may be way different:
  3012.     */
  3013.     *param->length= length;
  3014.     break;
  3015.   }
  3016.   }
  3017. }
  3018. /*
  3019.   Convert integer value to client buffer of any type.
  3020.   SYNOPSIS
  3021.     fetch_long_with_conversion()
  3022.     param   output buffer descriptor
  3023.     field   column metadata
  3024.     value   column data
  3025. */
  3026. static void fetch_long_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
  3027.                                        longlong value)
  3028. {
  3029.   char *buffer= (char *)param->buffer;
  3030.   uint field_is_unsigned= field->flags & UNSIGNED_FLAG;
  3031.   switch (param->buffer_type) {
  3032.   case MYSQL_TYPE_NULL: /* do nothing */
  3033.     break;
  3034.   case MYSQL_TYPE_TINY:
  3035.     *(uchar *)param->buffer= (uchar) value;
  3036.     break;
  3037.   case MYSQL_TYPE_SHORT:
  3038.     shortstore(buffer, value);
  3039.     break;
  3040.   case MYSQL_TYPE_LONG:
  3041.     longstore(buffer, value);
  3042.     break;
  3043.   case MYSQL_TYPE_LONGLONG:
  3044.     longlongstore(buffer, value);
  3045.     break;
  3046.   case MYSQL_TYPE_FLOAT:
  3047.   {
  3048.     float data= field_is_unsigned ? (float) ulonglong2double(value) :
  3049.                                     (float) value;
  3050.     floatstore(buffer, data);
  3051.     break;
  3052.   }
  3053.   case MYSQL_TYPE_DOUBLE:
  3054.   {
  3055.     double data= field_is_unsigned ? ulonglong2double(value) :
  3056.                                      (double) value;
  3057.     doublestore(buffer, data);
  3058.     break;
  3059.   }
  3060.   default:
  3061.   {
  3062.     char buff[22];                              /* Enough for longlong */
  3063.     char *end= longlong10_to_str(value, buff, field_is_unsigned ? 10: -10);
  3064.     /* Resort to string conversion which supports all typecodes */
  3065.     uint length= (uint) (end-buff);
  3066.     if (field->flags & ZEROFILL_FLAG && length < field->length &&
  3067.         field->length < 21)
  3068.     {
  3069.       bmove_upp((char*) buff+field->length,buff+length, length);
  3070.       bfill((char*) buff, field->length - length,'0');
  3071.       length= field->length;
  3072.     }
  3073.     fetch_string_with_conversion(param, buff, length);
  3074.     break;
  3075.   }
  3076.   }
  3077. }
  3078. /*
  3079.   Convert double/float column to supplied buffer of any type.
  3080.   SYNOPSIS
  3081.     fetch_float_with_conversion()
  3082.     param   output buffer descriptor
  3083.     field   column metadata
  3084.     value   column data
  3085.     width   default number of significant digits used when converting
  3086.             float/double to string
  3087. */
  3088. static void fetch_float_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
  3089.                                         double value, int width)
  3090. {
  3091.   char *buffer= (char *)param->buffer;
  3092.   switch (param->buffer_type) {
  3093.   case MYSQL_TYPE_NULL: /* do nothing */
  3094.     break;
  3095.   case MYSQL_TYPE_TINY:
  3096.     *buffer= (uchar)value;
  3097.     break;
  3098.   case MYSQL_TYPE_SHORT:
  3099.     shortstore(buffer, (short)value);
  3100.     break;
  3101.   case MYSQL_TYPE_LONG:
  3102.     longstore(buffer, (long)value);
  3103.     break;
  3104.   case MYSQL_TYPE_LONGLONG:
  3105.   {
  3106.     longlong val= (longlong) value;
  3107.     longlongstore(buffer, val);
  3108.     break;
  3109.   }
  3110.   case MYSQL_TYPE_FLOAT:
  3111.   {
  3112.     float data= (float) value;
  3113.     floatstore(buffer, data);
  3114.     break;
  3115.   }
  3116.   case MYSQL_TYPE_DOUBLE:
  3117.   {
  3118.     doublestore(buffer, value);
  3119.     break;
  3120.   }
  3121.   default:
  3122.   {
  3123.     /*
  3124.       Resort to fetch_string_with_conversion: this should handle
  3125.       floating point -> string conversion nicely, honor all typecodes
  3126.       and param->offset possibly set in mysql_stmt_fetch_column
  3127.     */
  3128.     char buff[MAX_DOUBLE_STRING_REP_LENGTH];
  3129.     char *end;
  3130.     /* TODO: move this to a header shared between client and server. */
  3131. #define NOT_FIXED_DEC  31
  3132.     if (field->decimals >= NOT_FIXED_DEC)
  3133. #undef NOT_FIXED_DEC
  3134.     {
  3135.       /*
  3136.         The 14 below is to ensure that the server and client has the same
  3137.         precisions. This will ensure that on the same machine you get the
  3138.         same value as a string independent of the protocol you use.
  3139.       */
  3140.       sprintf(buff, "%-*.*g", (int) min(sizeof(buff)-1,
  3141.                                         param->buffer_length),
  3142.       min(14,width), value);
  3143.       end= strcend(buff, ' ');
  3144.       *end= 0;
  3145.     }
  3146.     else
  3147.     {
  3148.       sprintf(buff, "%.*f", (int) field->decimals, value);
  3149.       end= strend(buff);
  3150.     }
  3151.     fetch_string_with_conversion(param, buff, (uint) (end - buff));
  3152.     break;
  3153.   }
  3154.   }
  3155. }
  3156. /*
  3157.   Fetch time/date/datetime to supplied buffer of any type
  3158.   SYNOPSIS
  3159.     param   output buffer descriptor
  3160.     time    column data
  3161. */
  3162. static void fetch_datetime_with_conversion(MYSQL_BIND *param,
  3163.                                            MYSQL_TIME *time)
  3164. {
  3165.   switch (param->buffer_type) {
  3166.   case MYSQL_TYPE_NULL: /* do nothing */
  3167.     break;
  3168.   case MYSQL_TYPE_DATE:
  3169.   case MYSQL_TYPE_TIME:
  3170.   case MYSQL_TYPE_DATETIME:
  3171.   case MYSQL_TYPE_TIMESTAMP:
  3172.     /* XXX: should we copy only relevant members here? */
  3173.     *(MYSQL_TIME *)(param->buffer)= *time;
  3174.     break;
  3175.   default:
  3176.   {
  3177.     /*
  3178.       Convert time value  to string and delegate the rest to
  3179.       fetch_string_with_conversion:
  3180.     */
  3181.     char buff[MAX_DATE_STRING_REP_LENGTH];
  3182.     uint length= my_TIME_to_str(time, buff);
  3183.     /* Resort to string conversion */
  3184.     fetch_string_with_conversion(param, (char *)buff, length);
  3185.     break;
  3186.   }
  3187.   }
  3188. }
  3189. /*
  3190.   Fetch and convert result set column to output buffer.
  3191.   SYNOPSIS
  3192.     fetch_result_with_conversion()
  3193.     param   output buffer descriptor
  3194.     field   column metadata
  3195.     row     points to a column of result set tuple in binary format
  3196.   DESCRIPTION
  3197.     This is a fallback implementation of column fetch used
  3198.     if column and output buffer types do not match.
  3199.     Increases tuple pointer to point at the next column within the
  3200.     tuple.
  3201. */
  3202. static void fetch_result_with_conversion(MYSQL_BIND *param, MYSQL_FIELD *field,
  3203.                                          uchar **row)
  3204. {
  3205.   enum enum_field_types field_type= field->type;
  3206.   uint field_is_unsigned= field->flags & UNSIGNED_FLAG;
  3207.   switch (field_type) {
  3208.   case MYSQL_TYPE_TINY:
  3209.   {
  3210.     uchar value= **row;
  3211.     /* sic: we need to cast to 'signed char' as 'char' may be unsigned */
  3212.     longlong data= field_is_unsigned ? (longlong) value :
  3213.                                        (longlong) (signed char) value;
  3214.     fetch_long_with_conversion(param, field, data);
  3215.     *row+= 1;
  3216.     break;
  3217.   }
  3218.   case MYSQL_TYPE_SHORT:
  3219.   case MYSQL_TYPE_YEAR:
  3220.   {
  3221.     short value= sint2korr(*row);
  3222.     longlong data= field_is_unsigned ? (longlong) (unsigned short) value :
  3223.                                        (longlong) value;
  3224.     fetch_long_with_conversion(param, field, data);
  3225.     *row+= 2;
  3226.     break;
  3227.   }
  3228.   case MYSQL_TYPE_INT24: /* mediumint is sent as 4 bytes int */
  3229.   case MYSQL_TYPE_LONG:
  3230.   {
  3231.     int32 value= sint4korr(*row);
  3232.     longlong data= field_is_unsigned ? (longlong) (uint32) value :
  3233.                                        (longlong) value;
  3234.     fetch_long_with_conversion(param, field, data);
  3235.     *row+= 4;
  3236.     break;
  3237.   }
  3238.   case MYSQL_TYPE_LONGLONG:
  3239.   {
  3240.     longlong value= (longlong)sint8korr(*row);
  3241.     fetch_long_with_conversion(param, field, value);
  3242.     *row+= 8;
  3243.     break;
  3244.   }
  3245.   case MYSQL_TYPE_FLOAT:
  3246.   {
  3247.     float value;
  3248.     float4get(value,*row);
  3249.     fetch_float_with_conversion(param, field, value, FLT_DIG);
  3250.     *row+= 4;
  3251.     break;
  3252.   }
  3253.   case MYSQL_TYPE_DOUBLE:
  3254.   {
  3255.     double value;
  3256.     float8get(value,*row);
  3257.     fetch_float_with_conversion(param, field, value, DBL_DIG);
  3258.     *row+= 8;
  3259.     break;
  3260.   }
  3261.   case MYSQL_TYPE_DATE:
  3262.   {
  3263.     MYSQL_TIME tm;
  3264.     read_binary_date(&tm, row);
  3265.     fetch_datetime_with_conversion(param, &tm);
  3266.     break;
  3267.   }
  3268.   case MYSQL_TYPE_TIME:
  3269.   {
  3270.     MYSQL_TIME tm;
  3271.     read_binary_time(&tm, row);
  3272.     fetch_datetime_with_conversion(param, &tm);
  3273.     break;
  3274.   }
  3275.   case MYSQL_TYPE_DATETIME:
  3276.   case MYSQL_TYPE_TIMESTAMP:
  3277.   {
  3278.     MYSQL_TIME tm;
  3279.     read_binary_datetime(&tm, row);
  3280.     fetch_datetime_with_conversion(param, &tm);
  3281.     break;
  3282.   }
  3283.   default:
  3284.   {
  3285.     ulong length= net_field_length(row);
  3286.     fetch_string_with_conversion(param, (char*) *row, length);
  3287.     *row+= length;
  3288.     break;
  3289.   }
  3290.   }
  3291. }
  3292. /*
  3293.   Functions to fetch data to application buffers without conversion.
  3294.   All functions have the following characteristics:
  3295.   SYNOPSIS
  3296.     fetch_result_xxx()
  3297.     param   MySQL bind param
  3298.     pos     Row value
  3299.   DESCRIPTION
  3300.     These are no-conversion functions, used in binary protocol to store
  3301.     rows in application buffers. A function used only if type of binary data
  3302.     is compatible with type of application buffer.
  3303.   RETURN
  3304.     none
  3305. */
  3306. static void fetch_result_tinyint(MYSQL_BIND *param, uchar **row)
  3307. {
  3308.   *(uchar *)param->buffer= **row;
  3309.   (*row)++;
  3310. }
  3311. static void fetch_result_short(MYSQL_BIND *param, uchar **row)
  3312. {
  3313.   short value = (short)sint2korr(*row);
  3314.   shortstore(param->buffer, value);
  3315.   *row+= 2;
  3316. }
  3317. static void fetch_result_int32(MYSQL_BIND *param, uchar **row)
  3318. {
  3319.   int32 value= (int32)sint4korr(*row);
  3320.   longstore(param->buffer, value);
  3321.   *row+= 4;
  3322. }
  3323. static void fetch_result_int64(MYSQL_BIND *param, uchar **row)
  3324. {
  3325.   longlong value= (longlong)sint8korr(*row);
  3326.   longlongstore(param->buffer, value);
  3327.   *row+= 8;
  3328. }
  3329. static void fetch_result_float(MYSQL_BIND *param, uchar **row)
  3330. {
  3331.   float value;
  3332.   float4get(value,*row);
  3333.   floatstore(param->buffer, value);
  3334.   *row+= 4;
  3335. }
  3336. static void fetch_result_double(MYSQL_BIND *param, uchar **row)
  3337. {
  3338.   double value;
  3339.   float8get(value,*row);
  3340.   doublestore(param->buffer, value);
  3341.   *row+= 8;
  3342. }
  3343. static void fetch_result_time(MYSQL_BIND *param, uchar **row)
  3344. {
  3345.   MYSQL_TIME *tm= (MYSQL_TIME *)param->buffer;
  3346.   read_binary_time(tm, row);
  3347. }
  3348. static void fetch_result_date(MYSQL_BIND *param, uchar **row)
  3349. {
  3350.   MYSQL_TIME *tm= (MYSQL_TIME *)param->buffer;
  3351.   read_binary_date(tm, row);
  3352. }
  3353. static void fetch_result_datetime(MYSQL_BIND *param, uchar **row)
  3354. {
  3355.   MYSQL_TIME *tm= (MYSQL_TIME *)param->buffer;
  3356.   read_binary_datetime(tm, row);
  3357. }
  3358. static void fetch_result_bin(MYSQL_BIND *param, uchar **row)
  3359. {
  3360.   ulong length= net_field_length(row);
  3361.   ulong copy_length= min(length, param->buffer_length);
  3362.   memcpy(param->buffer, (char *)*row, copy_length);
  3363.   *param->length= length;
  3364.   *row+= length;
  3365. }
  3366. static void fetch_result_str(MYSQL_BIND *param, uchar **row)
  3367. {
  3368.   ulong length= net_field_length(row);
  3369.   ulong copy_length= min(length, param->buffer_length);
  3370.   memcpy(param->buffer, (char *)*row, copy_length);
  3371.   /* Add an end null if there is room in the buffer */
  3372.   if (copy_length != param->buffer_length)
  3373.     ((uchar *)param->buffer)[copy_length]= '';
  3374.   *param->length= length; /* return total length */
  3375.   *row+= length;
  3376. }
  3377. /*
  3378.   functions to calculate max lengths for strings during
  3379.   mysql_stmt_store_result()
  3380. */
  3381. static void skip_result_fixed(MYSQL_BIND *param,
  3382.       MYSQL_FIELD *field __attribute__((unused)),
  3383.       uchar **row)
  3384. {
  3385.   (*row)+= param->pack_length;
  3386. }
  3387. static void skip_result_with_length(MYSQL_BIND *param __attribute__((unused)),
  3388.     MYSQL_FIELD *field __attribute__((unused)),
  3389.     uchar **row)
  3390. {
  3391.   ulong length= net_field_length(row);
  3392.   (*row)+= length;
  3393. }
  3394. static void skip_result_string(MYSQL_BIND *param __attribute__((unused)),
  3395.        MYSQL_FIELD *field,
  3396.        uchar **row)
  3397. {
  3398.   ulong length= net_field_length(row);
  3399.   (*row)+= length;
  3400.   if (field->max_length < length)
  3401.     field->max_length= length;
  3402. }
  3403. /*
  3404.   Setup the bind buffers for resultset processing
  3405. */
  3406. my_bool STDCALL mysql_stmt_bind_result(MYSQL_STMT *stmt, MYSQL_BIND *bind)
  3407. {
  3408.   MYSQL_BIND *param, *end;
  3409.   MYSQL_FIELD *field;
  3410.   ulong       bind_count= stmt->field_count;
  3411.   uint        param_count= 0;
  3412.   DBUG_ENTER("mysql_stmt_bind_result");
  3413.   DBUG_PRINT("enter",("field_count: %d", bind_count));
  3414.   if (!bind_count)
  3415.   {
  3416.     int errorcode= (int) stmt->state < (int) MYSQL_STMT_PREPARE_DONE ?
  3417.                    CR_NO_PREPARE_STMT : CR_NO_STMT_METADATA;
  3418.     set_stmt_error(stmt, errorcode, unknown_sqlstate);
  3419.     DBUG_RETURN(1);
  3420.   }
  3421.   /*
  3422.     We only need to check that stmt->field_count - if it is not null
  3423.     stmt->bind was initialized in mysql_stmt_prepare
  3424.     stmt->bind overlaps with bind if mysql_stmt_bind_param
  3425.     is called from mysql_stmt_store_result.
  3426.   */
  3427.   if (stmt->bind != bind)
  3428.     memcpy((char*) stmt->bind, (char*) bind, sizeof(MYSQL_BIND) * bind_count);
  3429.   for (param= stmt->bind, end= param + bind_count, field= stmt->fields ;
  3430.        param < end ;
  3431.        param++, field++)
  3432.   {
  3433.     DBUG_PRINT("info",("buffer_type: %u  field_type: %u",
  3434.                        (uint) param->buffer_type, (uint) field->type));
  3435.     /*
  3436.       Set param->is_null to point to a dummy variable if it's not set.
  3437.       This is to make the execute code easier
  3438.     */
  3439.     if (!param->is_null)
  3440.       param->is_null= &param->internal_is_null;
  3441.     if (!param->length)
  3442.       param->length= &param->internal_length;
  3443.     param->param_number= param_count++;
  3444.     param->offset= 0;
  3445.     /* Setup data copy functions for the different supported types */
  3446.     switch (param->buffer_type) {
  3447.     case MYSQL_TYPE_NULL: /* for dummy binds */
  3448.       *param->length= 0;
  3449.       break;
  3450.     case MYSQL_TYPE_TINY:
  3451.       param->fetch_result= fetch_result_tinyint;
  3452.       *param->length= 1;
  3453.       break;
  3454.     case MYSQL_TYPE_SHORT:
  3455.     case MYSQL_TYPE_YEAR:
  3456.       param->fetch_result= fetch_result_short;
  3457.       *param->length= 2;
  3458.       break;
  3459.     case MYSQL_TYPE_INT24:
  3460.     case MYSQL_TYPE_LONG:
  3461.       param->fetch_result= fetch_result_int32;
  3462.       *param->length= 4;
  3463.       break;
  3464.     case MYSQL_TYPE_LONGLONG:
  3465.       param->fetch_result= fetch_result_int64;
  3466.       *param->length= 8;
  3467.       break;
  3468.     case MYSQL_TYPE_FLOAT:
  3469.       param->fetch_result= fetch_result_float;
  3470.       *param->length= 4;
  3471.       break;
  3472.     case MYSQL_TYPE_DOUBLE:
  3473.       param->fetch_result= fetch_result_double;
  3474.       *param->length= 8;
  3475.       break;
  3476.     case MYSQL_TYPE_TIME:
  3477.       param->fetch_result= fetch_result_time;
  3478.       *param->length= sizeof(MYSQL_TIME);
  3479.       break;
  3480.     case MYSQL_TYPE_DATE:
  3481.       param->fetch_result= fetch_result_date;
  3482.       *param->length= sizeof(MYSQL_TIME);
  3483.       break;
  3484.     case MYSQL_TYPE_DATETIME:
  3485.     case MYSQL_TYPE_TIMESTAMP:
  3486.       param->fetch_result= fetch_result_datetime;
  3487.       *param->length= sizeof(MYSQL_TIME);
  3488.       break;
  3489.     case MYSQL_TYPE_TINY_BLOB:
  3490.     case MYSQL_TYPE_MEDIUM_BLOB:
  3491.     case MYSQL_TYPE_LONG_BLOB:
  3492.     case MYSQL_TYPE_BLOB:
  3493.       DBUG_ASSERT(param->buffer_length != 0);
  3494.       param->fetch_result= fetch_result_bin;
  3495.       break;
  3496.     case MYSQL_TYPE_VAR_STRING:
  3497.     case MYSQL_TYPE_STRING:
  3498.       DBUG_ASSERT(param->buffer_length != 0);
  3499.       param->fetch_result= fetch_result_str;
  3500.       break;
  3501.     default:
  3502.       strmov(stmt->sqlstate, unknown_sqlstate);
  3503.       sprintf(stmt->last_error,
  3504.       ER(stmt->last_errno= CR_UNSUPPORTED_PARAM_TYPE),
  3505.       param->buffer_type, param_count);
  3506.       DBUG_RETURN(1);
  3507.     }
  3508.     /* Setup skip_result functions (to calculate max_length) */
  3509.     param->skip_result= skip_result_fixed;
  3510.     switch (field->type) {
  3511.     case MYSQL_TYPE_NULL: /* for dummy binds */
  3512.       param->pack_length= 0;
  3513.       field->max_length= 0;
  3514.       break;
  3515.     case MYSQL_TYPE_TINY:
  3516.       param->pack_length= 1;
  3517.       field->max_length= 4;                     /* as in '-127' */
  3518.       break;
  3519.     case MYSQL_TYPE_YEAR:
  3520.     case MYSQL_TYPE_SHORT:
  3521.       param->pack_length= 2;
  3522.       field->max_length= 6;                     /* as in '-32767' */
  3523.       break;
  3524.     case MYSQL_TYPE_INT24:
  3525.       field->max_length= 9;  /* as in '16777216' or in '-8388607' */
  3526.       param->pack_length= 4;
  3527.       break;
  3528.     case MYSQL_TYPE_LONG:
  3529.       field->max_length= 11;                    /* '-2147483647' */
  3530.       param->pack_length= 4;
  3531.       break;
  3532.     case MYSQL_TYPE_LONGLONG:
  3533.       field->max_length= 21;                    /* '18446744073709551616' */
  3534.       param->pack_length= 8;
  3535.       break;
  3536.     case MYSQL_TYPE_FLOAT:
  3537.       param->pack_length= 4;
  3538.       field->max_length= MAX_DOUBLE_STRING_REP_LENGTH;
  3539.       break;
  3540.     case MYSQL_TYPE_DOUBLE:
  3541.       param->pack_length= 8;
  3542.       field->max_length= MAX_DOUBLE_STRING_REP_LENGTH;
  3543.       break;
  3544.     case MYSQL_TYPE_TIME:
  3545.     case MYSQL_TYPE_DATE:
  3546.     case MYSQL_TYPE_DATETIME:
  3547.     case MYSQL_TYPE_TIMESTAMP:
  3548.       param->skip_result= skip_result_with_length;
  3549.       field->max_length= MAX_DATE_STRING_REP_LENGTH;
  3550.       break;
  3551.     case MYSQL_TYPE_DECIMAL:
  3552.     case MYSQL_TYPE_ENUM:
  3553.     case MYSQL_TYPE_SET:
  3554.     case MYSQL_TYPE_GEOMETRY:
  3555.     case MYSQL_TYPE_TINY_BLOB:
  3556.     case MYSQL_TYPE_MEDIUM_BLOB:
  3557.     case MYSQL_TYPE_LONG_BLOB:
  3558.     case MYSQL_TYPE_BLOB:
  3559.     case MYSQL_TYPE_VAR_STRING:
  3560.     case MYSQL_TYPE_STRING:
  3561.       param->skip_result= skip_result_string;
  3562.       break;
  3563.     default:
  3564.       strmov(stmt->sqlstate, unknown_sqlstate);
  3565.       sprintf(stmt->last_error,
  3566.       ER(stmt->last_errno= CR_UNSUPPORTED_PARAM_TYPE),
  3567.       field->type, param_count);
  3568.       DBUG_RETURN(1);
  3569.     }
  3570.   }
  3571.   stmt->bind_result_done= TRUE;
  3572.   DBUG_RETURN(0);
  3573. }
  3574. /*
  3575.   Fetch row data to bind buffers
  3576. */
  3577. static int stmt_fetch_row(MYSQL_STMT *stmt, uchar *row)
  3578. {
  3579.   MYSQL_BIND  *bind, *end;
  3580.   MYSQL_FIELD *field;
  3581.   uchar *null_ptr, bit;
  3582.   /*
  3583.     Precondition: if stmt->field_count is zero or row is NULL, read_row_*
  3584.     function must return no data.
  3585.   */
  3586.   DBUG_ASSERT(stmt->field_count);
  3587.   DBUG_ASSERT(row);
  3588.   if (!stmt->bind_result_done)
  3589.   {
  3590.     /* If output parameters were not bound we should just return success */
  3591.     return 0;
  3592.   }
  3593.   null_ptr= row;
  3594.   row+= (stmt->field_count+9)/8; /* skip null bits */
  3595.   bit= 4; /* first 2 bits are reserved */
  3596.   /* Copy complete row to application buffers */
  3597.   for (bind= stmt->bind, end= bind + stmt->field_count, field= stmt->fields ;
  3598.        bind < end ;
  3599.        bind++, field++)
  3600.   {
  3601.     if (*null_ptr & bit)
  3602.     {
  3603.       /*
  3604.         We should set both inter_buffer and is_null to be able to see
  3605.         nulls in mysql_stmt_fetch_column. This is because is_null may point
  3606.         to user data which can be overwritten between mysql_stmt_fetch and
  3607.         mysql_stmt_fetch_column, and in this case nullness of column will be
  3608.         lost. See mysql_stmt_fetch_column for details.
  3609.       */
  3610.       bind->inter_buffer= NULL;
  3611.       *bind->is_null= 1;
  3612.     }
  3613.     else
  3614.     {
  3615.       *bind->is_null= 0;
  3616.       bind->inter_buffer= row;
  3617.       if (field->type == bind->buffer_type)
  3618.         (*bind->fetch_result)(bind, &row);
  3619.       else
  3620.         fetch_result_with_conversion(bind, field, &row);
  3621.     }
  3622.     if (!((bit<<=1) & 255))
  3623.     {
  3624.       bit= 1; /* To next byte */
  3625.       null_ptr++;
  3626.     }
  3627.   }
  3628.   return 0;
  3629. }
  3630. int cli_unbuffered_fetch(MYSQL *mysql, char **row)
  3631. {
  3632.   if (packet_error == net_safe_read(mysql))
  3633.     return 1;
  3634.   *row= ((mysql->net.read_pos[0] == 254) ? NULL :
  3635.  (char*) (mysql->net.read_pos+1));
  3636.   return 0;
  3637. }
  3638. /*
  3639.   Fetch and return row data to bound buffers, if any
  3640. */
  3641. int STDCALL mysql_stmt_fetch(MYSQL_STMT *stmt)
  3642. {
  3643.   int rc;
  3644.   uchar *row;
  3645.   DBUG_ENTER("mysql_stmt_fetch");
  3646.   if ((rc= (*stmt->read_row_func)(stmt, &row)) ||
  3647.       (rc= stmt_fetch_row(stmt, row)))
  3648.   {
  3649.     stmt->state= MYSQL_STMT_PREPARE_DONE;       /* XXX: this is buggy */
  3650.     stmt->read_row_func= stmt_read_row_no_data;
  3651.   }
  3652.   else
  3653.   {
  3654.     /* This is to know in mysql_stmt_fetch_column that data was fetched */
  3655.     stmt->state= MYSQL_STMT_FETCH_DONE;
  3656.   }
  3657.   DBUG_RETURN(rc);
  3658. }
  3659. /*
  3660.   Fetch data for one specified column data
  3661.   SYNOPSIS
  3662.     mysql_stmt_fetch_column()
  3663.     stmt Prepared statement handler
  3664.     bind Where data should be placed. Should be filled in as
  3665. when calling mysql_stmt_bind_result()
  3666.     column Column to fetch (first column is 0)
  3667.     ulong offset Offset in result data (to fetch blob in pieces)
  3668. This is normally 0
  3669.   RETURN
  3670.     0 ok
  3671.     1 error
  3672. */
  3673. int STDCALL mysql_stmt_fetch_column(MYSQL_STMT *stmt, MYSQL_BIND *bind,
  3674.                                     uint column, ulong offset)
  3675. {
  3676.   MYSQL_BIND *param= stmt->bind+column;
  3677.   DBUG_ENTER("mysql_stmt_fetch_column");
  3678.   if ((int) stmt->state < (int) MYSQL_STMT_FETCH_DONE)
  3679.   {
  3680.     set_stmt_error(stmt, CR_NO_DATA, unknown_sqlstate);
  3681.     return 1;
  3682.   }
  3683.   if (column >= stmt->field_count)
  3684.   {
  3685.     set_stmt_error(stmt, CR_INVALID_PARAMETER_NO, unknown_sqlstate);
  3686.     DBUG_RETURN(1);
  3687.   }
  3688.   if (param->inter_buffer)
  3689.   {
  3690.     MYSQL_FIELD *field= stmt->fields+column;
  3691.     uchar *row= param->inter_buffer;
  3692.     bind->offset= offset;
  3693.     if (bind->is_null)
  3694.       *bind->is_null= 0;
  3695.     if (bind->length) /* Set the length if non char/binary types */
  3696.       *bind->length= *param->length;
  3697.     else
  3698.       bind->length= &param->internal_length; /* Needed for fetch_result() */
  3699.     fetch_result_with_conversion(bind, field, &row);
  3700.   }
  3701.   else
  3702.   {
  3703.     if (bind->is_null)
  3704.       *bind->is_null= 1;
  3705.   }
  3706.   DBUG_RETURN(0);
  3707. }
  3708. /*
  3709.   Read all rows of data from server  (binary format)
  3710. */
  3711. int cli_read_binary_rows(MYSQL_STMT *stmt)
  3712. {
  3713.   ulong      pkt_len;
  3714.   uchar      *cp;
  3715.   MYSQL      *mysql= stmt->mysql;
  3716.   MYSQL_DATA *result= &stmt->result;
  3717.   MYSQL_ROWS *cur, **prev_ptr= &result->data;
  3718.   NET        *net = &mysql->net;
  3719.   DBUG_ENTER("cli_read_binary_rows");
  3720.   mysql= mysql->last_used_con;
  3721.   while ((pkt_len= net_safe_read(mysql)) != packet_error)
  3722.   {
  3723.     cp= net->read_pos;
  3724.     if (cp[0] != 254 || pkt_len >= 8)
  3725.     {
  3726.       if (!(cur= (MYSQL_ROWS*) alloc_root(&result->alloc,
  3727.                                           sizeof(MYSQL_ROWS) + pkt_len - 1)))
  3728.       {
  3729.         set_stmt_error(stmt, CR_OUT_OF_MEMORY, unknown_sqlstate);
  3730.         goto err;
  3731.       }
  3732.       cur->data= (MYSQL_ROW) (cur+1);
  3733.       *prev_ptr= cur;
  3734.       prev_ptr= &cur->next;
  3735.       memcpy((char *) cur->data, (char *) cp+1, pkt_len-1);
  3736.       cur->length= pkt_len; /* To allow us to do sanity checks */
  3737.       result->rows++;
  3738.     }
  3739.     else
  3740.     {
  3741.       /* end of data */
  3742.       *prev_ptr= 0;
  3743.       mysql->warning_count= uint2korr(cp+1);
  3744.       mysql->server_status= uint2korr(cp+3);
  3745.       DBUG_PRINT("info",("status: %u  warning_count: %u",
  3746.                          mysql->server_status, mysql->warning_count));
  3747.       DBUG_RETURN(0);
  3748.     }
  3749.   }
  3750.   set_stmt_errmsg(stmt, net->last_error, net->last_errno, net->sqlstate);
  3751. err:
  3752.   DBUG_RETURN(1);
  3753. }
  3754. /*
  3755.   Update meta data for statement
  3756.   SYNOPSIS
  3757.     stmt_update_metadata()
  3758.     stmt Statement handler
  3759.     row Binary data
  3760.   NOTES
  3761.     Only updates MYSQL_FIELD->max_length for strings
  3762. */
  3763. static void stmt_update_metadata(MYSQL_STMT *stmt, MYSQL_ROWS *data)
  3764. {
  3765.   MYSQL_BIND  *bind, *end;
  3766.   MYSQL_FIELD *field;
  3767.   uchar *null_ptr, bit;
  3768.   uchar *row= (uchar*) data->data;
  3769. #ifndef DBUG_OFF
  3770.   uchar *row_end= row + data->length;
  3771. #endif
  3772.   null_ptr= row;
  3773.   row+= (stmt->field_count+9)/8; /* skip null bits */
  3774.   bit= 4; /* first 2 bits are reserved */
  3775.   /* Go through all fields and calculate metadata */
  3776.   for (bind= stmt->bind, end= bind + stmt->field_count, field= stmt->fields ;
  3777.        bind < end ;
  3778.        bind++, field++)
  3779.   {
  3780.     if (!(*null_ptr & bit))
  3781.       (*bind->skip_result)(bind, field, &row);
  3782.     DBUG_ASSERT(row <= row_end);
  3783.     if (!((bit<<=1) & 255))
  3784.     {
  3785.       bit= 1; /* To next byte */
  3786.       null_ptr++;
  3787.     }
  3788.   }
  3789. }
  3790. /*
  3791.   Store or buffer the binary results to stmt
  3792. */
  3793. int STDCALL mysql_stmt_store_result(MYSQL_STMT *stmt)
  3794. {
  3795.   MYSQL *mysql= stmt->mysql;
  3796.   MYSQL_DATA *result= &stmt->result;
  3797.   DBUG_ENTER("mysql_stmt_store_result");
  3798.   mysql= mysql->last_used_con;
  3799.   if (!stmt->field_count)
  3800.     DBUG_RETURN(0);
  3801.   if ((int) stmt->state < (int) MYSQL_STMT_EXECUTE_DONE ||
  3802.       mysql->status != MYSQL_STATUS_GET_RESULT)
  3803.   {
  3804.     set_stmt_error(stmt, CR_COMMANDS_OUT_OF_SYNC, unknown_sqlstate);
  3805.     DBUG_RETURN(1);
  3806.   }
  3807.   if (result->data)
  3808.   {
  3809.     free_root(&result->alloc, MYF(MY_KEEP_PREALLOC));
  3810.     result->data= NULL;
  3811.     result->rows= 0;
  3812.     stmt->data_cursor= NULL;
  3813.   }
  3814.   if (stmt->update_max_length && !stmt->bind_result_done)
  3815.   {
  3816.     /*
  3817.       We must initalize the bind structure to be able to calculate
  3818.       max_length
  3819.     */
  3820.     MYSQL_BIND  *bind, *end;
  3821.     MYSQL_FIELD *field;
  3822.     bzero((char*) stmt->bind, sizeof(*stmt->bind)* stmt->field_count);
  3823.     for (bind= stmt->bind, end= bind + stmt->field_count, field= stmt->fields;
  3824.  bind < end ;
  3825.  bind++, field++)
  3826.     {
  3827.       bind->buffer_type= MYSQL_TYPE_NULL;
  3828.       bind->buffer_length=1;
  3829.     }
  3830.     if (mysql_stmt_bind_result(stmt, stmt->bind))
  3831.       DBUG_RETURN(1);
  3832.     stmt->bind_result_done= 0; /* No normal bind done */
  3833.   }
  3834.   if ((*mysql->methods->read_binary_rows)(stmt))
  3835.   {
  3836.     free_root(&result->alloc, MYF(MY_KEEP_PREALLOC));
  3837.     result->data= NULL;
  3838.     result->rows= 0;
  3839.     mysql->status= MYSQL_STATUS_READY;
  3840.     DBUG_RETURN(1);
  3841.   }
  3842.   if (stmt->update_max_length)
  3843.   {
  3844.     MYSQL_ROWS *cur= result->data;
  3845.     for(; cur; cur=cur->next)
  3846.       stmt_update_metadata(stmt, cur);
  3847.   }
  3848.   stmt->data_cursor= result->data;
  3849.   mysql->affected_rows= stmt->affected_rows= result->rows;
  3850.   stmt->read_row_func= stmt_read_row_buffered;
  3851.   mysql->unbuffered_fetch_owner= 0;             /* set in stmt_execute */
  3852.   mysql->status= MYSQL_STATUS_READY; /* server is ready */
  3853.   DBUG_RETURN(0); /* Data buffered, must be fetched with mysql_stmt_fetch() */
  3854. }
  3855. /*
  3856.   Seek to desired row in the statement result set
  3857. */
  3858. MYSQL_ROW_OFFSET STDCALL
  3859. mysql_stmt_row_seek(MYSQL_STMT *stmt, MYSQL_ROW_OFFSET row)
  3860. {
  3861.   MYSQL_ROW_OFFSET offset= stmt->data_cursor;
  3862.   DBUG_ENTER("mysql_stmt_row_seek");
  3863.   stmt->data_cursor= row;
  3864.   DBUG_RETURN(offset);
  3865. }
  3866. /*
  3867.   Return the current statement row cursor position
  3868. */
  3869. MYSQL_ROW_OFFSET STDCALL
  3870. mysql_stmt_row_tell(MYSQL_STMT *stmt)
  3871. {
  3872.   DBUG_ENTER("mysql_stmt_row_tell");
  3873.   DBUG_RETURN(stmt->data_cursor);
  3874. }
  3875. /*
  3876.   Move the stmt result set data cursor to specified row
  3877. */
  3878. void STDCALL
  3879. mysql_stmt_data_seek(MYSQL_STMT *stmt, my_ulonglong row)
  3880. {
  3881.   MYSQL_ROWS *tmp= stmt->result.data;
  3882.   DBUG_ENTER("mysql_stmt_data_seek");
  3883.   DBUG_PRINT("enter",("row id to seek: %ld",(long) row));
  3884.   for (; tmp && row; --row, tmp= tmp->next)
  3885.     ;
  3886.   stmt->data_cursor= tmp;
  3887.   if (!row && tmp)
  3888.   {
  3889.        /*  Rewind the counter */
  3890.     stmt->read_row_func= stmt_read_row_buffered;
  3891.     stmt->state= MYSQL_STMT_EXECUTE_DONE;
  3892.   }
  3893.   DBUG_VOID_RETURN;
  3894. }
  3895. /*
  3896.   Return total rows the current statement result set
  3897. */
  3898. my_ulonglong STDCALL mysql_stmt_num_rows(MYSQL_STMT *stmt)
  3899. {
  3900.   DBUG_ENTER("mysql_stmt_num_rows");
  3901.   DBUG_RETURN(stmt->result.rows);
  3902. }
  3903. my_bool STDCALL mysql_stmt_free_result(MYSQL_STMT *stmt)
  3904. {
  3905.   MYSQL_DATA *result= &stmt->result;
  3906.   DBUG_ENTER("mysql_stmt_free_result");
  3907.   DBUG_ASSERT(stmt != 0);
  3908.   if ((int) stmt->state > (int) MYSQL_STMT_INIT_DONE)
  3909.   {
  3910.     MYSQL *mysql= stmt->mysql;
  3911.     if (result->data)
  3912.     {
  3913.       /* Result buffered */
  3914.       free_root(&result->alloc, MYF(MY_KEEP_PREALLOC));
  3915.       result->data= NULL;
  3916.       result->rows= 0;
  3917.       stmt->data_cursor= NULL;
  3918.     }
  3919.     if (mysql && stmt->field_count &&
  3920.         (int) stmt->state > (int) MYSQL_STMT_PREPARE_DONE)
  3921.     {
  3922.       if (mysql->unbuffered_fetch_owner == &stmt->unbuffered_fetch_cancelled)
  3923.         mysql->unbuffered_fetch_owner= 0;
  3924.       if (mysql->status != MYSQL_STATUS_READY)
  3925.       {
  3926.         /* There is a result set and it belongs to this statement */
  3927.         (*mysql->methods->flush_use_result)(mysql);
  3928.         mysql->status= MYSQL_STATUS_READY;
  3929.       }
  3930.     }
  3931.     stmt->state= MYSQL_STMT_PREPARE_DONE;
  3932.     stmt->read_row_func= stmt_read_row_no_data;
  3933.   }
  3934.   DBUG_RETURN(0);
  3935. }
  3936. /********************************************************************
  3937.  statement error handling and close
  3938. *********************************************************************/
  3939. /*
  3940.   Close the statement handle by freeing all alloced resources
  3941.   SYNOPSIS
  3942.     mysql_stmt_close()
  3943.     stmt        Statement handle
  3944.   RETURN VALUES
  3945.     0 ok
  3946.     1 error
  3947. */
  3948. my_bool STDCALL mysql_stmt_close(MYSQL_STMT *stmt)
  3949. {
  3950.   MYSQL *mysql= stmt->mysql;
  3951.   int rc= 0;
  3952.   DBUG_ENTER("mysql_stmt_close");
  3953.   free_root(&stmt->result.alloc, MYF(0));
  3954.   free_root(&stmt->mem_root, MYF(0));
  3955.   if (mysql)
  3956.   {
  3957.     mysql->stmts= list_delete(mysql->stmts, &stmt->list);
  3958.     /*
  3959.       Clear NET error state: if the following commands come through
  3960.       successfully, connection will still be usable for other commands.
  3961.     */
  3962.     net_clear_error(&mysql->net);
  3963.     if ((int) stmt->state > (int) MYSQL_STMT_INIT_DONE)
  3964.     {
  3965.       char buff[MYSQL_STMT_HEADER];             /* 4 bytes - stmt id */
  3966.       if (mysql->unbuffered_fetch_owner == &stmt->unbuffered_fetch_cancelled)
  3967.         mysql->unbuffered_fetch_owner= 0;
  3968.       if (mysql->status != MYSQL_STATUS_READY)
  3969.       {
  3970.         /*
  3971.           Flush result set of the connection. If it does not belong
  3972.           to this statement, set a warning.
  3973.         */
  3974.         (*mysql->methods->flush_use_result)(mysql);
  3975.         if (mysql->unbuffered_fetch_owner)
  3976.           *mysql->unbuffered_fetch_owner= TRUE;
  3977.         mysql->status= MYSQL_STATUS_READY;
  3978.       }
  3979.       int4store(buff, stmt->stmt_id);
  3980.       if ((rc= simple_command(mysql, COM_CLOSE_STMT, buff, 4, 1)))
  3981.       {
  3982.         set_stmt_errmsg(stmt, mysql->net.last_error, mysql->net.last_errno,
  3983.                         mysql->net.sqlstate);
  3984.       }
  3985.     }
  3986.   }
  3987.   my_free((gptr) stmt, MYF(MY_WME));
  3988.   DBUG_RETURN(test(rc));
  3989. }
  3990. /*
  3991.   Reset the statement buffers in server
  3992. */
  3993. my_bool STDCALL mysql_stmt_reset(MYSQL_STMT *stmt)
  3994. {
  3995.   char buff[MYSQL_STMT_HEADER]; /* packet header: 4 bytes for stmt id */
  3996.   MYSQL *mysql;
  3997.   MYSQL_BIND *param, *param_end;
  3998.   DBUG_ENTER("mysql_stmt_reset");
  3999.   DBUG_ASSERT(stmt != 0);
  4000.   /* If statement hasnt been prepared there is nothing to reset */
  4001.   if ((int) stmt->state < (int) MYSQL_STMT_PREPARE_DONE)
  4002.     DBUG_RETURN(0);
  4003.   mysql= stmt->mysql->last_used_con;
  4004.   int4store(buff, stmt->stmt_id); /* Send stmt id to server */
  4005.   if ((*mysql->methods->advanced_command)(mysql, COM_RESET_STMT, buff,
  4006.                                           sizeof(buff), 0, 0, 0))
  4007.   {
  4008.     set_stmt_errmsg(stmt, mysql->net.last_error, mysql->net.last_errno,
  4009.                     mysql->net.sqlstate);
  4010.     DBUG_RETURN(1);
  4011.   }
  4012.   /* Clear long_data_used for next call (as we do in mysql_stmt_execute() */
  4013.   for (param= stmt->params, param_end= param + stmt->param_count;
  4014.        param < param_end;
  4015.        param++)
  4016.     param->long_data_used= 0;
  4017.   stmt_clear_error(stmt);
  4018.   DBUG_RETURN(0);
  4019. }
  4020. /*
  4021.   Return statement error code
  4022. */
  4023. uint STDCALL mysql_stmt_errno(MYSQL_STMT * stmt)
  4024. {
  4025.   DBUG_ENTER("mysql_stmt_errno");
  4026.   DBUG_RETURN(stmt->last_errno);
  4027. }
  4028. const char *STDCALL mysql_stmt_sqlstate(MYSQL_STMT * stmt)
  4029. {
  4030.   DBUG_ENTER("mysql_stmt_sqlstate");
  4031.   DBUG_RETURN(stmt->sqlstate);
  4032. }
  4033. /*
  4034.   Return statement error message
  4035. */
  4036. const char *STDCALL mysql_stmt_error(MYSQL_STMT * stmt)
  4037. {
  4038.   DBUG_ENTER("mysql_stmt_error");
  4039.   DBUG_RETURN(stmt->last_error);
  4040. }
  4041. /********************************************************************
  4042.  Transactional APIs
  4043. *********************************************************************/
  4044. /*
  4045.   Commit the current transaction
  4046. */
  4047. my_bool STDCALL mysql_commit(MYSQL * mysql)
  4048. {
  4049.   DBUG_ENTER("mysql_commit");
  4050.   DBUG_RETURN((my_bool) mysql_real_query(mysql, "commit", 6));
  4051. }
  4052. /*
  4053.   Rollback the current transaction
  4054. */
  4055. my_bool STDCALL mysql_rollback(MYSQL * mysql)
  4056. {
  4057.   DBUG_ENTER("mysql_rollback");
  4058.   DBUG_RETURN((my_bool) mysql_real_query(mysql, "rollback", 8));
  4059. }
  4060. /*
  4061.   Set autocommit to either true or false
  4062. */
  4063. my_bool STDCALL mysql_autocommit(MYSQL * mysql, my_bool auto_mode)
  4064. {
  4065.   DBUG_ENTER("mysql_autocommit");
  4066.   DBUG_PRINT("enter", ("mode : %d", auto_mode));
  4067.   if (auto_mode) /* set to true */
  4068.     DBUG_RETURN((my_bool) mysql_real_query(mysql, "set autocommit=1", 16));
  4069.   DBUG_RETURN((my_bool) mysql_real_query(mysql, "set autocommit=0", 16));
  4070. }
  4071. /********************************************************************
  4072.  Multi query execution + SPs APIs
  4073. *********************************************************************/
  4074. /*
  4075.   Returns true/false to indicate whether any more query results exist
  4076.   to be read using mysql_next_result()
  4077. */
  4078. my_bool STDCALL mysql_more_results(MYSQL *mysql)
  4079. {
  4080.   my_bool res;
  4081.   DBUG_ENTER("mysql_more_results");
  4082.   res= ((mysql->last_used_con->server_status & SERVER_MORE_RESULTS_EXISTS) ?
  4083. 1: 0);
  4084.   DBUG_PRINT("exit",("More results exists ? %d", res));
  4085.   DBUG_RETURN(res);
  4086. }
  4087. /*
  4088.   Reads and returns the next query results
  4089. */
  4090. int STDCALL mysql_next_result(MYSQL *mysql)
  4091. {
  4092.   DBUG_ENTER("mysql_next_result");
  4093.   if (mysql->status != MYSQL_STATUS_READY)
  4094.   {
  4095.     strmov(mysql->net.sqlstate, unknown_sqlstate);
  4096.     strmov(mysql->net.last_error,
  4097.    ER(mysql->net.last_errno=CR_COMMANDS_OUT_OF_SYNC));
  4098.     DBUG_RETURN(1);
  4099.   }
  4100.   mysql->net.last_error[0]= 0;
  4101.   mysql->net.last_errno= 0;
  4102.   strmov(mysql->net.sqlstate, not_error_sqlstate);
  4103.   mysql->affected_rows= ~(my_ulonglong) 0;
  4104.   if (mysql->last_used_con->server_status & SERVER_MORE_RESULTS_EXISTS)
  4105.     DBUG_RETURN((*mysql->methods->next_result)(mysql));
  4106.   DBUG_RETURN(-1); /* No more results */
  4107. }
  4108. MYSQL_RES * STDCALL mysql_use_result(MYSQL *mysql)
  4109. {
  4110.   return (*mysql->methods->use_result)(mysql);
  4111. }
  4112. my_bool STDCALL mysql_read_query_result(MYSQL *mysql)
  4113. {
  4114.   return (*mysql->methods->read_query_result)(mysql);
  4115. }