日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 运维知识 > 数据库 >内容正文

数据库

C orm mysql_Simple MySQL-C ORM

發(fā)布時(shí)間:2023/12/2 数据库 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 C orm mysql_Simple MySQL-C ORM 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

當(dāng)你需要在純C語(yǔ)言的應(yīng)用程序中訪問(wèn) MySQL 表中的數(shù)據(jù)時(shí),是非常繁瑣的事情,而該框架可以幫你大量的簡(jiǎn)化編碼的工作,該框架采用 Python 開(kāi)發(fā),適用于 C 語(yǔ)言程序。

示例代碼:

#include

#include

#include

#include

int main (int argc, char **argv)

{

int ret;

MYSQL global_mysql;

MYSQL *m;

db_ex_customer *cust1;

db_ex_item *item1, *item2;

mysql_init (& global_mysql);

/*

* connect to MySQL as usual

*/

m = mysql_real_connect (& global_mysql, "localhost", "root", "", "ex1", 3036, NULL, 0);

/*

* pass the MySQL connection to function, that initializes the "ORM"

*/

ret = db_init (& global_mysql);

/*

* the *__new method creates empty structure

*/

cust1 = db_ex_customer__new ();

/*

* setting the structure attribute with allocated string,

* it will be freed during call of *__free method

*/

cust1->name = strdup ("alesak");

/*

* this methods inserts the structure into according table.

* If it has serial field, its value is reflected into structure

*/

ret = db_ex_customer__insert (cust1);

item1 = db_ex_item__new ();

item1->customer_id = cust1->id;

item1->itemname = strdup ("simple orm");

ret = db_ex_item__insert (item1);

item2 = db_ex_item__new ();

item2->customer_id = cust1->id;

item2->itemname = strdup ("advanced orm");

ret = db_ex_item__insert (item2);

db_ex_customer__free (cust1);

db_ex_item__free (item1);

db_ex_item__free (item2);

return (0);

}

總結(jié)

以上是生活随笔為你收集整理的C orm mysql_Simple MySQL-C ORM的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。