当前位置:  软件>C/C++软件

Simple MySQL-C ORM

    来源:    发布时间:2015-01-31

    本文导语:  当你需要在纯C语言的应用程序中访问 MySQL 表中的数据时,是非常繁琐的事情,而该框架可以帮你大量的简化编码的工作,该框架采用 Python 开发,适用于 C 语言程序。 示例代码: #include #include #include #include int main (int argc, char ...

当你需要在纯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);
}

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java命名空间javax.swing类jviewport的类成员方法: simple_scroll_mode定义及介绍
  • Simple Groupware
  • Simple ODF API
  • jQuery遮罩层插件 Simple Overlay
  • Simple Persistence for Java
  • Java的XML处理器 Simple
  • Simple CMS
  • Free Simple CMS
  • Free Simple Shop
  • Simple PHP Proxy
  • Simple Help Desk
  • 操作系统 iis7站长之家
  • Tab选项卡 Updated Simple CSS Tabs
  • jquery-simple-datetimepicker
  • Simple jQuery Date-picker Plugin
  • jQuery Simple Dialog
  • 可拖放的树形控件 jQuery Simple Tree
  • 游戏地图编辑 Simple Game Map Editor
  • 电子表格软件 Simple Spreadsheet
  • Java2D游戏开发包 loon-simple
  • Simple C Expat Wrapper


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3