myTest.c
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:5k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*C4*/
  2. /****************************************************************/
  3. /* Author: Jethro Wright, III TS :  3/ 4/1998  9:15 */
  4. /* Date: 02/18/1998 */
  5. /* mytest.c :  do some testing of the libmySQL.DLL.... */
  6. /* */
  7. /* History: */
  8. /* 02/18/1998  jw3  also sprach zarathustra.... */
  9. /****************************************************************/
  10. #include        <windows.h>
  11. #include <stdio.h>
  12. #include <string.h>
  13. #include <mysql.h>
  14. #define DEFALT_SQL_STMT "SELECT * FROM db"
  15. #ifndef offsetof
  16. #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
  17. #endif
  18. /********************************************************
  19. **
  20. ** main  :-
  21. **
  22. ********************************************************/
  23. int
  24. main( int argc, char * argv[] )
  25. {
  26.   char szSQL[ 200 ], aszFlds[ 25 ][ 25 ], * pszT, szDB[ 50 ] ;
  27.   int i, j, k, l, x ;
  28.   MYSQL * myData ;
  29.   MYSQL_RES * res ;
  30.   MYSQL_FIELD * fd ;
  31.   MYSQL_ROW row ;
  32.   //....just curious....
  33.   printf( "sizeof( MYSQL ) == %dn", sizeof( MYSQL ) ) ;
  34.   if ( argc == 2 )
  35.     {
  36.       strcpy( szDB, argv[ 1 ] ) ;
  37.       strcpy( szSQL, DEFALT_SQL_STMT ) ;
  38.       if (!strcmp(szDB,"--debug"))
  39.       {
  40. strcpy( szDB, "mysql" ) ;
  41. printf("Some mysql struct information (size and offset):n");
  42. printf("net:t%3d %3dn",sizeof(myData->net),offsetof(MYSQL,net));
  43. printf("host:t%3d %3dn",sizeof(myData->host),offsetof(MYSQL,host));
  44. printf("port:t%3d %3dn",sizeof(myData->port),offsetof(MYSQL,port));
  45. printf("protocol_version:t%3d %3dn",sizeof(myData->protocol_version),
  46.        offsetof(MYSQL,protocol_version));
  47. printf("thread_id:t%3d %3dn",sizeof(myData->thread_id),
  48.        offsetof(MYSQL,thread_id));
  49. printf("affected_rows:t%3d %3dn",sizeof(myData->affected_rows),
  50.        offsetof(MYSQL,affected_rows));
  51. printf("packet_length:t%3d %3dn",sizeof(myData->packet_length),
  52.        offsetof(MYSQL,packet_length));
  53. printf("status:t%3d %3dn",sizeof(myData->status),
  54.        offsetof(MYSQL,status));
  55. printf("fields:t%3d %3dn",sizeof(myData->fields),
  56.        offsetof(MYSQL,fields));
  57. printf("field_alloc:t%3d %3dn",sizeof(myData->field_alloc),
  58.        offsetof(MYSQL,field_alloc));
  59. printf("free_me:t%3d %3dn",sizeof(myData->free_me),
  60.        offsetof(MYSQL,free_me));
  61. printf("options:t%3d %3dn",sizeof(myData->options),
  62.        offsetof(MYSQL,options));
  63. puts("");
  64.       }
  65.     }
  66.   else if ( argc > 2 ) {
  67.     strcpy( szDB, argv[ 1 ] ) ;
  68.     strcpy( szSQL, argv[ 2 ] ) ;
  69.   }
  70.   else {
  71.     strcpy( szDB, "mysql" ) ;
  72.     strcpy( szSQL, DEFALT_SQL_STMT ) ;
  73.   }
  74.   //....
  75.   
  76.   if ( (myData = mysql_init((MYSQL*) 0)) && 
  77.        mysql_real_connect( myData, NULL, NULL, NULL, NULL, MYSQL_PORT,
  78.    NULL, 0 ) )
  79.     {
  80.       if ( mysql_select_db( myData, szDB ) < 0 ) {
  81. printf( "Can't select the %s database !n", szDB ) ;
  82. mysql_close( myData ) ;
  83. return 2 ;
  84.       }
  85.     }
  86.   else {
  87.     printf( "Can't connect to the mysql server on port %d !n",
  88.     MYSQL_PORT ) ;
  89.     mysql_close( myData ) ;
  90.     return 1 ;
  91.   }
  92.   //....
  93.   if ( ! mysql_query( myData, szSQL ) ) {
  94.     res = mysql_store_result( myData ) ;
  95.     i = (int) mysql_num_rows( res ) ; l = 1 ;
  96.     printf( "Query:  %snNumber of records found:  %ldn", szSQL, i ) ;
  97.     //....we can get the field-specific characteristics here....
  98.     for ( x = 0 ; fd = mysql_fetch_field( res ) ; x++ )
  99.       strcpy( aszFlds[ x ], fd->name ) ;
  100.     //....
  101.     while ( row = mysql_fetch_row( res ) ) {
  102.       j = mysql_num_fields( res ) ;
  103.       printf( "Record #%ld:-n", l++ ) ;
  104.       for ( k = 0 ; k < j ; k++ )
  105. printf( "  Fld #%d (%s): %sn", k + 1, aszFlds[ k ],
  106. (((row[k]==NULL)||(!strlen(row[k])))?"NULL":row[k])) ;
  107.       puts( "==============================n" ) ;
  108.     }
  109.     mysql_free_result( res ) ;
  110.   }
  111.   else printf( "Couldn't execute %s on the server !n", szSQL ) ;
  112.   //....
  113.   puts( "====  Diagnostic info  ====" ) ;
  114.   pszT = mysql_get_client_info() ;
  115.   printf( "Client info: %sn", pszT ) ;
  116.   //....
  117.   pszT = mysql_get_host_info( myData ) ;
  118.   printf( "Host info: %sn", pszT ) ;
  119.   //....
  120.   pszT = mysql_get_server_info( myData ) ;
  121.   printf( "Server info: %sn", pszT ) ;
  122.   //....
  123.   res = mysql_list_processes( myData ) ; l = 1 ;
  124.   if (res)
  125.     {
  126.       for ( x = 0 ; fd = mysql_fetch_field( res ) ; x++ )
  127. strcpy( aszFlds[ x ], fd->name ) ;
  128.       while ( row = mysql_fetch_row( res ) ) {
  129. j = mysql_num_fields( res ) ;
  130. printf( "Process #%ld:-n", l++ ) ;
  131. for ( k = 0 ; k < j ; k++ )
  132.   printf( "  Fld #%d (%s): %sn", k + 1, aszFlds[ k ],
  133.   (((row[k]==NULL)||(!strlen(row[k])))?"NULL":row[k])) ;
  134. puts( "==============================n" ) ;
  135.       }
  136.     }
  137.   else
  138.     {
  139.       printf("Got error %s when retreiving processlistn",mysql_error(myData));
  140.     }
  141.   //....
  142.   res = mysql_list_tables( myData, "%" ) ; l = 1 ;
  143.   for ( x = 0 ; fd = mysql_fetch_field( res ) ; x++ )
  144.     strcpy( aszFlds[ x ], fd->name ) ;
  145.   while ( row = mysql_fetch_row( res ) ) {
  146.     j = mysql_num_fields( res ) ;
  147.     printf( "Table #%ld:-n", l++ ) ;
  148.     for ( k = 0 ; k < j ; k++ )
  149.       printf( "  Fld #%d (%s): %sn", k + 1, aszFlds[ k ],
  150.       (((row[k]==NULL)||(!strlen(row[k])))?"NULL":row[k])) ;
  151.     puts( "==============================n" ) ;
  152.   }
  153.   //....
  154.   pszT = mysql_stat( myData ) ;
  155.   puts( pszT ) ;
  156.   //....
  157.   mysql_close( myData ) ;
  158.   return 0 ;
  159. }