真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C語(yǔ)言中怎么訪問(wèn)MySQL數(shù)據(jù)庫(kù)

本篇文章給大家分享的是有關(guān)C 語(yǔ)言中怎么訪問(wèn)MySQL數(shù)據(jù)庫(kù),小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。

創(chuàng)新互聯(lián)建站專注于寶坻企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計(jì),商城網(wǎng)站制作。寶坻網(wǎng)站建設(shè)公司,為寶坻等地區(qū)提供建站服務(wù)。全流程按需制作,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)

首先,建立一個(gè)MySQL用戶rick,密碼設(shè)置為6452079,登錄地點(diǎn)設(shè)置為本地登錄localhost。

為rick用戶創(chuàng)建一個(gè)數(shù)據(jù)庫(kù)foo。

在數(shù)據(jù)庫(kù)foo里創(chuàng)建一個(gè)表children。

表的結(jié)構(gòu)如下:

C 語(yǔ)言中怎么訪問(wèn)MySQL數(shù)據(jù)庫(kù)

添加3條簡(jiǎn)單的記錄后,表為:

C 語(yǔ)言中怎么訪問(wèn)MySQL數(shù)據(jù)庫(kù)

實(shí)驗(yàn)C 代碼:

#include 
#include 
#include "mysql.h"

MYSQL my_connection;
MYSQL_RES *res_ptr;
MYSQL_ROW sqlrow;

void mysql_display_row( MYSQL *my_connect, MYSQL_ROW sqlrow )
{
    unsigned int field_count;
    unsigned int field_result = mysql_field_count( my_connect );
    field_count = 0;
    
    while( field_count < field_result ) {
        printf("%s ", sqlrow[field_count]);
        field_count++;
    }
    printf("\n");
}

int main()
{
    int res;
    mysql_init( &my_connection );
    if( NULL != mysql_real_connect( &my_connection, "localhost", "rick", "6452079", "foo", 0, NULL, 0 ) ) {
        printf("Connection success!\n");
        res = mysql_query( &my_connection, "SELECT childno, fname, age FROM children WHERE age>5" );
        if ( 0 != res )
            printf("SELECT error: %s\n", mysql_error( &my_connection ));
        else {
            res_ptr = mysql_use_result( &my_connection );
            if( NULL != res_ptr ) {
                //  printf("Retrieved %lu rows\n", (unsigned long)mysql_num_rows( res_ptr ));
                while( (sqlrow = mysql_fetch_row( res_ptr ) ) ) {
                       printf("Fetched data...\n");
                       mysql_display_row( &my_connection, sqlrow );
                }
                if( 0 != mysql_errno( &my_connection) )
                       fprintf(stderr, "Retrieve error: %s\n", mysql_error( &my_connection ) );
                mysql_free_result( res_ptr );
            }

            mysql_close( &my_connection );
        }
    }
    else {
            fprintf(stderr, "Connection failed\n");
            if( mysql_errno( &my_connection ) )
                fprintf(stderr, "Connection error %d: %s\n", mysql_errno( &my_connection ), mysql_error( &my_connection ) );
        }

    return EXIT_SUCCESS;
}

運(yùn)行結(jié)果:

C 語(yǔ)言中怎么訪問(wèn)MySQL數(shù)據(jù)庫(kù)

以上就是C 語(yǔ)言中怎么訪問(wèn)MySQL數(shù)據(jù)庫(kù),小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


當(dāng)前題目:C語(yǔ)言中怎么訪問(wèn)MySQL數(shù)據(jù)庫(kù)
文章分享:http://weahome.cn/article/ishoci.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部