91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C 語言中怎么訪問MySQL數據庫

發布時間:2021-07-26 16:35:17 來源:億速云 閱讀:134 作者:Leah 欄目:數據庫

本篇文章給大家分享的是有關C 語言中怎么訪問MySQL數據庫,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

首先,建立一個MySQL用戶rick,密碼設置為6452079,登錄地點設置為本地登錄localhost。

為rick用戶創建一個數據庫foo。

在數據庫foo里創建一個表children。

表的結構如下:

C 語言中怎么訪問MySQL數據庫

添加3條簡單的記錄后,表為:

C 語言中怎么訪問MySQL數據庫

實驗C 代碼:

#include <stdio.h>
#include <stdlib.h>
#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;
}

運行結果:

C 語言中怎么訪問MySQL數據庫

以上就是C 語言中怎么訪問MySQL數據庫,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

紫金县| 许昌县| 准格尔旗| 山丹县| 格尔木市| 清水县| 永靖县| 璧山县| 綦江县| 内黄县| 乌拉特中旗| 弥勒县| 河源市| 东台市| 泸水县| 万安县| 定西市| 安义县| 马公市| 闽侯县| 昌吉市| 达拉特旗| 蕉岭县| 工布江达县| 阿尔山市| 北辰区| 灵寿县| 离岛区| 衡水市| 方山县| 额济纳旗| 陆川县| 乳山市| 阳朔县| 柘荣县| 凌源市| 永胜县| 莆田市| 彝良县| 沂源县| 正安县|