C orm mysql_Simple MySQL-C ORM

当你需要在纯C语言的应用程序中访问 MySQL 表中的数据时,是非常繁琐的事情,而该框架可以帮你大量的简化编码的工作,该框架采用 Python 开发,适用于 C 语言程序。

示例代码:

#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);

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值