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

MySQL数据库

开发平台:

Visual 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 ], szDB[ 50 ] ;
  27.   const  char   *pszT;   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", (int) sizeof( MYSQL ) ) ;   if ( argc == 2 )
  34.     {
  35.       strcpy( szDB, argv[ 1 ] ) ;
  36.       strcpy( szSQL, DEFALT_SQL_STMT ) ;
  37.       if (!strcmp(szDB,"--debug"))
  38.       {
  39. strcpy( szDB, "mysql" ) ;
  40. printf("Some mysql struct information (size and offset):n");
  41. printf("net:t%3d %3dn",(int) sizeof(myData->net),        (int) offsetof(MYSQL,net)); printf("host:t%3d %3dn",(int) sizeof(myData->host),        (int) offsetof(MYSQL,host)); printf("port:t%3d %3dn", (int) sizeof(myData->port),        (int) offsetof(MYSQL,port)); printf("protocol_version:t%3d %3dn",        (int) sizeof(myData->protocol_version),        (int) offsetof(MYSQL,protocol_version)); printf("thread_id:t%3d %3dn",(int) sizeof(myData->thread_id),        (int) offsetof(MYSQL,thread_id)); printf("affected_rows:t%3d %3dn",(int) sizeof(myData->affected_rows),        (int) offsetof(MYSQL,affected_rows)); printf("packet_length:t%3d %3dn",(int) sizeof(myData->packet_length),        (int) offsetof(MYSQL,packet_length)); printf("status:t%3d %3dn",(int) sizeof(myData->status),        (int) offsetof(MYSQL,status)); printf("fields:t%3d %3dn",(int) sizeof(myData->fields),        (int) offsetof(MYSQL,fields)); printf("field_alloc:t%3d %3dn",(int) sizeof(myData->field_alloc),        (int) offsetof(MYSQL,field_alloc)); printf("free_me:t%3d %3dn",(int) sizeof(myData->free_me),        (int) offsetof(MYSQL,free_me)); printf("options:t%3d %3dn",(int) sizeof(myData->options),        (int) offsetof(MYSQL,options)); puts("");
  42.       }
  43.     }
  44.   else if ( argc > 2 ) {
  45.     strcpy( szDB, argv[ 1 ] ) ;
  46.     strcpy( szSQL, argv[ 2 ] ) ;
  47.   }
  48.   else {
  49.     strcpy( szDB, "mysql" ) ;
  50.     strcpy( szSQL, DEFALT_SQL_STMT ) ;
  51.   }
  52.   //....
  53.   
  54.   if ( (myData = mysql_init((MYSQL*) 0)) && 
  55.        mysql_real_connect( myData, NULL, NULL, NULL, NULL, MYSQL_PORT,
  56.    NULL, 0 ) )
  57.     {
  58.       if ( mysql_select_db( myData, szDB ) < 0 ) {
  59. printf( "Can't select the %s database !n", szDB ) ;
  60. mysql_close( myData ) ;
  61. return 2 ;
  62.       }
  63.     }
  64.   else {
  65.     printf( "Can't connect to the mysql server on port %d !n",
  66.     MYSQL_PORT ) ;
  67.     mysql_close( myData ) ;
  68.     return 1 ;
  69.   }
  70.   //....
  71.   if ( ! mysql_query( myData, szSQL ) ) {
  72.     res = mysql_store_result( myData ) ;
  73.     i = (int) mysql_num_rows( res ) ; l = 1 ;
  74.     printf( "Query:  %snNumber of records found:  %ldn", szSQL, i ) ;
  75.     //....we can get the field-specific characteristics here....
  76.     for ( x = 0 ; fd = mysql_fetch_field( res ) ; x++ )
  77.       strcpy( aszFlds[ x ], fd->name ) ;
  78.     //....
  79.     while ( row = mysql_fetch_row( res ) ) {
  80.       j = mysql_num_fields( res ) ;
  81.       printf( "Record #%ld:-n", l++ ) ;
  82.       for ( k = 0 ; k < j ; k++ )
  83. printf( "  Fld #%d (%s): %sn", k + 1, aszFlds[ k ],
  84. (((row[k]==NULL)||(!strlen(row[k])))?"NULL":row[k])) ;
  85.       puts( "==============================n" ) ;
  86.     }
  87.     mysql_free_result( res ) ;
  88.   }
  89.   else printf( "Couldn't execute %s on the server !n", szSQL ) ;
  90.   //....
  91.   puts( "====  Diagnostic info  ====" ) ;
  92.   pszT = mysql_get_client_info() ;
  93.   printf( "Client info: %sn", pszT ) ;
  94.   //....
  95.   pszT = mysql_get_host_info( myData ) ;
  96.   printf( "Host info: %sn", pszT ) ;
  97.   //....
  98.   pszT = mysql_get_server_info( myData ) ;
  99.   printf( "Server info: %sn", pszT ) ;
  100.   //....
  101.   res = mysql_list_processes( myData ) ; l = 1 ;
  102.   if (res)
  103.     {
  104.       for ( x = 0 ; fd = mysql_fetch_field( res ) ; x++ )
  105. strcpy( aszFlds[ x ], fd->name ) ;
  106.       while ( row = mysql_fetch_row( res ) ) {
  107. j = mysql_num_fields( res ) ;
  108. printf( "Process #%ld:-n", l++ ) ;
  109. for ( k = 0 ; k < j ; k++ )
  110.   printf( "  Fld #%d (%s): %sn", k + 1, aszFlds[ k ],
  111.   (((row[k]==NULL)||(!strlen(row[k])))?"NULL":row[k])) ;
  112. puts( "==============================n" ) ;
  113.       }
  114.     }
  115.   else
  116.     {
  117.       printf("Got error %s when retreiving processlistn",mysql_error(myData));
  118.     }
  119.   //....
  120.   res = mysql_list_tables( myData, "%" ) ; l = 1 ;
  121.   for ( x = 0 ; fd = mysql_fetch_field( res ) ; x++ )
  122.     strcpy( aszFlds[ x ], fd->name ) ;
  123.   while ( row = mysql_fetch_row( res ) ) {
  124.     j = mysql_num_fields( res ) ;
  125.     printf( "Table #%ld:-n", l++ ) ;
  126.     for ( k = 0 ; k < j ; k++ )
  127.       printf( "  Fld #%d (%s): %sn", k + 1, aszFlds[ k ],
  128.       (((row[k]==NULL)||(!strlen(row[k])))?"NULL":row[k])) ;
  129.     puts( "==============================n" ) ;
  130.   }
  131.   //....
  132.   pszT = mysql_stat( myData ) ;
  133.   puts( pszT ) ;
  134.   //....
  135.   mysql_close( myData ) ;
  136.   return 0 ;
  137. }