首页 > 数据库 > MySQL > 正文

介绍一个针对C++程序的MySQL访问库soci

2024-07-24 13:07:05
字体:
来源:转载
供稿:网友

这篇文章主要介绍了介绍一个针对C++程序的MySQL访问库soci,文章中还讲了其中的一些操作方法,需要的朋友可以参考下

一直以来,笔者都在不停寻找一种更人性化的数据库访问方式(并不是说默认的方式不好,而是有时候的确在模块化设计中不太方便)。

后来有幸在php中找到codeigniter的ActiveReord,详细参考这篇文章:抽离CodeIgniter的数据库访问类!

然而c++却始终用着最原始的方式,昨天趁着项目要用的机会,在网上搜索了好久,总算让我找到两套c++的数据库访问框架:

soci

litesql

两套代码我都拿下来看了一下,litesql实现了一套完整的代码自动生成,功能强大,但是也很重;soci相对要轻量,但是同样也实现了数据结构到数据库表的映射。本人还是比较喜欢轻量的东西,所以最终选择了soci。经过这两天的试用,感觉非常不错。

官方的文档也很详细,所以这里就用我写的单元测试代码来做一下简单的讲解:

首先创建库表:

 

 
  1. create database soci; 
  2. CREATE TABLE `tb_test` ( 
  3. `id` int(11) NOT NULL auto_increment, 
  4. `namevarchar(32) default ""
  5. `sex` int(11) default 0, 
  6. PRIMARY KEY (`id`), 
  7. UNIQUE KEY `name` (`name`) 
  8. ); 
  9.  
  10. create database soci; 
  11. CREATE TABLE `tb_test` ( 
  12. `id` int(11) NOT NULL auto_increment, 
  13. `namevarchar(32) default ""
  14. `sex` int(11) default 0, 
  15. PRIMARY KEY (`id`), 
  16. UNIQUE KEY `name` (`name`) 
  17. ); 

1.简单的select单条记录

 

 
  1. TEST(soci,select_one) 
  2. try 
  3. session sql(mysql, "host=localhost db=soci user=dantezhu"); 
  4. indicator ind; 
  5.  
  6. string name = "dandan"
  7. int sex; 
  8. sql << "select sex from tb_test where name = :name"
  9. into(sex, ind), use(name); 
  10.  
  11. ASSERT_EQ(ind, i_ok) << name
  12. catch (exception const &e) 
  13. FAIL()<<e.what(); 
  14.  
  15. TEST(soci,select_one) 
  16. try 
  17. session sql(mysql, "host=localhost db=soci user=dantezhu"); 
  18. indicator ind; 
  19.  
  20. string name = "dandan"
  21. int sex; 
  22. sql << "select sex from tb_test where name = :name"
  23. into(sex, ind), use(name); 
  24.  
  25. ASSERT_EQ(ind, i_ok) << name
  26. catch (exception const &e) 
  27. FAIL()<<e.what(); 

select的结果,如果成功则ind会为i_ok,同值sex被赋值;如果失败则反之

2.简单的select多条记录

 

 
  1. TEST(soci,select_multi2) 
  2. try 
  3. session sql(mysql, "db=soci user=dantezhu"); 
  4. indicator ind; 
  5.  
  6. int count; 
  7. sql << "select count(*) from tb_test", into(count, ind); 
  8. ASSERT_EQ(ind, i_ok) << count; 
  9.  
  10. if (count == 0) 
  11. SUCCEED(); 
  12. return
  13.  
  14. int sex = 1; 
  15. vector<string> vec_name(count); 
  16. vector<int> vec_sex(count); 
  17. sql << "select name,sex from tb_test where sex = :sex"
  18. into(vec_name), into(vec_sex), use(sex); 
  19. catch (exception const &e) 
  20. FAIL()<<e.what(); 
  21.  
  22. TEST(soci,select_multi2) 
  23. try 
  24. session sql(mysql, "db=soci user=dantezhu"); 
  25. indicator ind; 
  26.  
  27. int count; 
  28. sql << "select count(*) from tb_test", into(count, ind); 
  29. ASSERT_EQ(ind, i_ok) << count; 
  30.  
  31. if (count == 0) 
  32. SUCCEED(); 
  33. return
  34.  
  35. int sex = 1; 
  36. vector<string> vec_name(count); 
  37. vector<int> vec_sex(count); 
  38. sql << "select name,sex from tb_test where sex = :sex"
  39. into(vec_name), into(vec_sex), use(sex); 
  40. catch (exception const &e) 
  41. FAIL()<<e.what(); 

与select单条记录唯一的区别即,into()的参数是一个vector。其实用多个vector这种方式并不是一个很好的选择,后面会介绍基于数据结构的方式。

3.简单的insert

 

 
  1. TEST(soci,insert_exist) 
  2. try 
  3. session sql(mysql, "db=soci user=dantezhu"); 
  4.  
  5. string name = "dandan"
  6. int sex = 1; 
  7.  
  8. sql << "insert into tb_test(name, sex) values(:name, :sex)"
  9. use(name), use(sex); 
  10. catch (exception const &e) 
  11. SUCCEED()<<e.what(); 
  12.  
  13. TEST(soci,insert_exist) 
  14. try 
  15. session sql(mysql, "db=soci user=dantezhu"); 
  16.  
  17. string name = "dandan"
  18. int sex = 1; 
  19.  
  20. sql << "insert into tb_test(name, sex) values(:name, :sex)"
  21. use(name), use(sex); 
  22. catch (exception const &e) 
  23. SUCCEED()<<e.what(); 

insert,update,delete都有两个同样的问题:

a)affect_rows(操作的行数)没有办法返回

b)操作的id无法知道,尤其对于insert的主键是自增的情况下,无法知道插入的主键的值是多少。

update和delete都与insert相似,这里就不再多说。

接下来是这个框架的很重要的一个特性,即数据库表与数据结构绑定:

首先我们需要定义一个结构体,并告知soci怎么让列名和数据结构的字段对应起来:

 

 
  1. struct Person 
  2. int id; 
  3. std::string name; 
  4. int sex; 
  5. }; 
  6.  
  7. namespace soci 
  8. template<> struct type_conversion<Person> 
  9. typedef values base_type; 
  10. static void from_base(values const & v, indicator /* ind */, Person & p) 
  11. p.id = v.get<int>("id"); 
  12. p.name = v.get<std::string>("name"); 
  13. p.sex = v.get<int>("sex"); 
  14. static void to_base(const Person & p, values & v, indicator & ind) 
  15. v.set("id", p.id); 
  16. v.set("name", p.name); 
  17. v.set("sex", p.sex); 
  18. ind = i_ok; 
  19. }; 
  20.  
  21. struct Person 
  22. int id; 
  23. std::string name; 
  24. int sex; 
  25. }; 
  26.  
  27. namespace soci 
  28. template<> struct type_conversion<Person> 
  29. typedef values base_type; 
  30. static void from_base(values const & v, indicator /* ind */, Person & p) 
  31. p.id = v.get<int>("id"); 
  32. p.name = v.get<std::string>("name"); 
  33. p.sex = v.get<int>("sex"); 
  34. static void to_base(const Person & p, values & v, indicator & ind) 
  35. v.set("id", p.id); 
  36. v.set("name", p.name); 
  37. v.set("sex", p.sex); 
  38. ind = i_ok; 
  39. }; 

关于

 

 
  1. template<> struct type_conversion<Person> 
  2.  
  3. template<> struct type_conversion<Person> 

这里,官方的文档是是有误的,我查了好长时间,按照上面的写法来写即可。

1.用数据结构来select

 

 
  1. TEST(soci,select_obj_one) 
  2. try 
  3. session sql(mysql, "db=soci user=dantezhu"); 
  4. indicator ind; 
  5.  
  6. int count; 
  7. sql << "select count(*) from tb_test", into(count, ind); 
  8. ASSERT_EQ(ind, i_ok) << count; 
  9.  
  10. string name = "dandan"
  11. Person p; 
  12. sql << "select id,name,sex from tb_test where name = :name"
  13. into(p, ind), use(name); 
  14.  
  15. ASSERT_EQ(ind, i_ok) << name; 
  16.  
  17. if (sql.got_data()) 
  18. cout<< p.id  
  19. << "," 
  20. << p.name 
  21. << "," 
  22. << p.sex  
  23. << endl; 
  24.  
  25. catch (exception const &e) 
  26. FAIL()<<e.what(); 
  27.  
  28. TEST(soci,select_obj_one) 
  29. try 
  30. session sql(mysql, "db=soci user=dantezhu"); 
  31. indicator ind; 
  32.  
  33. int count; 
  34. sql << "select count(*) from tb_test", into(count, ind); 
  35. ASSERT_EQ(ind, i_ok) << count; 
  36.  
  37. string name = "dandan"
  38. Person p; 
  39. sql << "select id,name,sex from tb_test where name = :name"
  40. into(p, ind), use(name); 
  41.  
  42. ASSERT_EQ(ind, i_ok) << name; 
  43.  
  44. if (sql.got_data()) 
  45. cout<< p.id  
  46. << "," 
  47. << p.name 
  48. << "," 
  49. << p.sex  
  50. << endl; 
  51.  
  52. catch (exception const &e) 
  53. FAIL()<<e.what(); 

2.用数据结构来进行insert

 

 
  1. TEST(soci,insert_obj_noexist) 
  2. try 
  3. session sql(mysql, "db=soci user=dantezhu"); 
  4.  
  5. Person p = { 
  6. 0, 
  7. "niuniu"
  8. }; 
  9.  
  10. sql << "insert into tb_test(name, sex) values(:name, :sex)"
  11. use(p); 
  12. catch (exception const &e) 
  13. FAIL()<<e.what(); 
  14.  
  15. TEST(soci,insert_obj_noexist) 
  16. try 
  17. session sql(mysql, "db=soci user=dantezhu"); 
  18.  
  19. Person p = { 
  20. 0, 
  21. "niuniu"
  22. }; 
  23.  
  24. sql << "insert into tb_test(name, sex) values(:name, :sex)"
  25. use(p); 
  26. catch (exception const &e) 
  27. FAIL()<<e.what(); 

整个就是这样~~下面是文中代码文件的下载路径:

http://code.google.com/p/vimercode/source/browse/#svn%2Ftrunk%2Fsoci_test

另外,虽然python下的mysql访问也算比较简单,但还是想知道是否有更Pythonic的库或接口,如果有朋友知道,欢迎不吝告知。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表