home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / client / select_test.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  76 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library 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 GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17.  
  18.  
  19. #if defined(_WIN32) || defined(_WIN64)
  20. #include <windows.h>
  21. #endif
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include "mysql.h"
  25.  
  26. #define SELECT_QUERY "select name from test where num = %d"
  27.  
  28.  
  29. int main(int argc, char **argv)
  30. {
  31.   int    count, num;
  32.   MYSQL mysql,*sock;
  33.   MYSQL_RES *res;
  34.   char    qbuf[160];
  35.  
  36.   if (argc != 3)
  37.   {
  38.     fprintf(stderr,"usage : select_test <dbname> <num>\n\n");
  39.     exit(1);
  40.   }
  41.  
  42.   mysql_init(&mysql);
  43.   if (!(sock = mysql_real_connect(&mysql,NULL,0,0,argv[1],0,NULL,0)))
  44.   {
  45.     fprintf(stderr,"Couldn't connect to engine!\n%s\n\n",mysql_error(&mysql));
  46.     perror("");
  47.     exit(1);
  48.   }
  49.  
  50.   count = 0;
  51.   num = atoi(argv[2]);
  52.   while (count < num)
  53.   {
  54.     sprintf(qbuf,SELECT_QUERY,count);
  55.     if(mysql_query(sock,qbuf))
  56.     {
  57.       fprintf(stderr,"Query failed (%s)\n",mysql_error(sock));
  58.       exit(1);
  59.     }
  60.     if (!(res=mysql_store_result(sock)))
  61.     {
  62.       fprintf(stderr,"Couldn't get result from %s\n",
  63.           mysql_error(sock));
  64.       exit(1);
  65.     }
  66. #ifdef TEST
  67.     printf("number of fields: %d\n",mysql_num_fields(res));
  68. #endif
  69.     mysql_free_result(res);
  70.     count++;
  71.   }
  72.   mysql_close(sock);
  73.   exit(0);
  74.   return 0;                    /* Keep some compilers happy */
  75. }
  76.