導航:首頁 > 編程大全 > c窗體程序連接資料庫

c窗體程序連接資料庫

發布時間:2025-01-09 17:57:09

❶ 用C語言怎麼實現與資料庫的連接

#include<mysql/mysql.h>

#include<stdio.h>

intmain()

{

MYSQL*conn;

MYSQL_RES*res;

MYSQL_ROWrow;

char*server="localhost";//本地連接

char*user="root";//

char*password="525215980";//mysql密碼

char*database="student";//資料庫名

char*query="select*fromclass";//需要查詢的語句

intt,r;

conn=mysql_init(NULL);

if(!mysql_real_connect(conn,server,user,password,database,0,NULL,0))

{

printf("Errorconnectingtodatabase:%s ",mysql_error(conn));

}else{

printf("Connected... ");

}

t=mysql_query(conn,query);

if(t)

{

printf("Errormakingquery:%s ",mysql_error(conn));

}else{

printf("Querymade... ");

res=mysql_use_result(conn);

if(res)

{

while((row=mysql_fetch_row(res))!=NULL)

{

//printf("num=%d ",mysql_num_fields(res));//列數

for(t=0;t<mysql_num_fields(res);t++)

printf("%8s",row[t]);

printf(" ");

}

}

mysql_free_result(res);

}

mysql_close(conn);

return0;

}

(1)c窗體程序連接資料庫擴展閱讀

C語言使用注意事項:

1、指針是c語言的靈魂,一定要靈活的使用它:

(1)、指針的聲明,創建,賦值,銷毀等

(2)、指針的類型轉換,傳參,回調等

2、遞歸調用也會經常用到:

(1)、遞歸遍歷樹結構

(2)、遞歸搜索

閱讀全文

與c窗體程序連接資料庫相關的資料

熱點內容
新版天貓app如何查看詳情 瀏覽:390
sql資料庫同步 瀏覽:492
網路面板線錯了怎麼辦 瀏覽:343
cs6畫筆工具在哪 瀏覽:290
微信刪了數據怎麼恢復 瀏覽:162
啟動器配置文件丟失怎麼辦 瀏覽:896
jsxmlhttppost 瀏覽:614
w8如何取消密碼設置密碼 瀏覽:911
nmap文件轉換成excel 瀏覽:351
正在等待後台程序關閉 瀏覽:740
linux網卡rx 瀏覽:897
游戲是用什麼編程軟體做出來的 瀏覽:629
c語言將通訊錄文件導入管理系統 瀏覽:828
cad文件圖標變成白板如何恢復 瀏覽:190
貴州遵義開發票下載什麼網站 瀏覽:496
如何獲取美團的銷售數據 瀏覽:575
大數據建模的方法有哪些 瀏覽:958
分公司工商年報如何填寫財務數據 瀏覽:286
蘋果北京維修點地址 瀏覽:928
app原型圖是什麼東西 瀏覽:237

友情鏈接