Simple MySQL-C ORM

授权协议 未知
开发语言 C/C++ Python
所属分类 程序开发、 ORM/持久层框架
软件类型 开源软件
地区 不详
投 递 者 甄阳朔
操作系统 Windows
开源组织
适用人群 未知
 软件概览

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

示例代码:

#include <db.h>
#include <stdio.h>
#include <string.h>
#include <time.h>


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);
}
  • 当你需要在纯C语言的应用程序中访问 MySQL 表中的数据时,是非常繁琐的事情,而该框架可以帮你大量的简化编码的工作,该框架采用 Python 开发,适用于 C 语言程序。 示例代码 #include <db.h> #include <stdio.h> #include <string.h> #include <time.h> int main (int argc, char **argv)

  • 當你需要在純C語言的應用程序中訪問 MySQL 表中的數據時,是非常繁瑣的事情,而該框架可以幫你大量的簡化編碼的工作,該框架采用 Python 開發,適用於 C 語言程序。 示例代碼 #include #include #include #include int main (int argc, char **argv) { int ret; MYSQL global_mysql; MYSQL *m

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

  • 一直不知道有ORM这种东西,直到和 @海坡 交流后才接触。 在项目中,需要将数据存储到数据库中,首先想到的是生成各种raw SQL的解决方法。但随着项目的进展,发现它很不灵活。譬如可能因为有新的需求,在数据库student表中添加dept_no字段,那在各种raw SQ中就需要进行修改了,工程浩大。如果操作(插入\修改\删除)数据库表中的数据,和操作数据对象一样,可以简化很多的操作,便于数据层的变

  • 构建自己的PHP框架--定义ORM的接口,构建php框架orm 在上一篇博客中,我们抽象出了Controller的基类,实现了页面的渲染和返回JSON字符串的功能。 那作为一个框架,我们现在还缺少什么?是的,大家应该已经注意到了,我们在这之前从来没有连接过数据库,我们缺少一个ORM(Object Relational Mapping)。 在php中连接mysql有三种方式,分别是使用原生函数、my

  • 构建自己的PHP框架--定义ORM的接口,构建php框架orm 在上一篇博客中,我们抽象出了Controller的基类,实现了页面的渲染和返回JSON字符串的功能。 那作为一个框架,我们现在还缺少什么?是的,大家应该已经注意到了,我们在这之前从来没有连接过数据库,我们缺少一个ORM(Object Relational Mapping)。 在php中连接mysql有三种方式,分别是使用原生函数、my

  • 在上一篇博客中,我们抽象出了Controller的基类,实现了页面的渲染和返回JSON字符串的功能。 那作为一个框架,我们现在还缺少什么?是的,大家应该已经注意到了,我们在这之前从来没有连接过数据库,我们缺少一个ORM(Object Relational Mapping)。 在php中连接mysql有三种方式,分别是使用原生函数、mysqli扩展和PDO扩展,详细内容可以查看我之前的博客《PHP的

相关阅读

相关文章

相关问答

相关文档