SQLLite (三):sqlite3_get_table,sqlite3_free_table

前端之家收集整理的这篇文章主要介绍了SQLLite (三):sqlite3_get_table,sqlite3_free_table前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
上一篇介绍的sqlite3_exec 是使用回调来执行对select结果的操作,你得声明一个函数,如果这个函数是类成员函数,你还不得不把它声明成static的(要问为什么?这又是C++基础了。C++成员函数实际上隐藏了一个参数:this,C++调用类的成员函数的时候,隐含把类指针当成函数的第一个参数传递进去。结果,这造成跟前面说的sqlite 回调函数的参数不相符。只有当把成员函数声明成static 时,它才没有多余的隐含的this参数)。

有时候你还是想要非回调的select 查询。这可以通过sqlite3_get_table 函数做到。

  1. 1intsqlite3_get_table(
  2. 2sqlite3*db,<spanstyle="color:#009900;">/*Anopendatabase*/</span>
  3. 3constchar*zsql,<spanstyle="color:#009900;">/*sqltobeevaluated*/</span>
  4. 4char***pazResult,0); background-color:inherit">/*Resultsofthequery*/</span>
  5. 5int*pnRow,0); background-color:inherit">/*Numberofresultrowswrittenhere*/</span>
  6. 6int*pnColumn,0); background-color:inherit">/*Numberofresultcolumnswrittenhere*/</span>
  7. 7char**pzErrmsg<spanstyle="color:#009900;">/*Errormsgwrittenhere*/</span>
  8. 8);
  9. 9voidsqlite3_free_table(char**result);

第1个参数不再多说,看前面的例子。 第2个参数是sql 语句,跟sqlite3_exec 里的sql 是一样的。是一个很普通的以\0结尾的char*字符串。 第3个参数是查询结果,它依然一维数组(不要以为是二维数组,更不要以为是三维数组)。它内存布局是:字段名称,后面是紧接着是每个字段的值。下面用例子来说事。 第4个参数是查询出多少条记录(即查出多少行,不包括字段名那行)。 第5个参数是多少个字段(多少列)。 第6个参数是错误信息,跟前面一样,这里不多说了。

pazResult返回的字符串数量实际上是(*pnRow+1)*(*pnColumn),因为前(*pnColumn)个是字段名

修改上篇的例子,使用sqlite3_get_table,来去的结果集:

copy
    #include<iostream>
  1. 2usingnamespacestd;
  2. 3#include"sqlite/sqlite3.h"
  3. intcallback(void*,int,87); font-weight:bold; background-color:inherit">char**,87); font-weight:bold; background-color:inherit">char**);
  4. intmain()
  5. 6{
  6. 7sqlite3*db;
  7. 8intnResult=sqlite3_open("test.db",&db);
  8. if(nResult!=sqlITE_OK)
  9. 10{
  10. 11cout<<"打开数据库失败:"<<sqlite3_errmsg(db)<<endl;
  11. 12return0;
  12. 13}
  13. 14else
  14. 15{
  15. 16cout<<"数据库打开成功"<<endl;
  16. 17}
  17. 18
  18. 19char*errmsg;
  19. 20
  20. 21nResult=sqlite3_exec(db,"createtableMyTable(idintegerprimarykeyautoincrement,namevarchar(100))",NULL,&errmsg);
  21. 22if(nResult!=sqlITE_OK)
  22. 23{
  23. 24sqlite3_close(db);
  24. 25cout<<errmsg;
  25. 26sqlite3_free(errmsg);
  26. 27return0;
  27. 28}
  28. 29stringstrsql;
  29. 30strsql+="begin;\n";
  30. 31for(inti=0;i<100;i++)
  31. 32{
  32. 33strsql+="insertintoMyTablevalues(null,'heh');\n";
  33. 34}
  34. 35strsql+="commit;";
  35. 36//cout<<strsql<<endl;
  36. 37
  37. 38nResult=sqlite3_exec(db,strsql.c_str(),&errmsg);
  38. 39
  39. 40 41{
  40. 42sqlite3_close(db);
  41. 43cout<<errmsg<<endl;
  42. 44sqlite3_free(errmsg);
  43. 45 46}
  44. 47
  45. 48strsql="select*fromMyTable";
  46. <spanstyle="color:#009900;">49//nResult=sqlite3_exec(db,callback,&errmsg);</span>
  47. 50char**pResult;
  48. 51intnRow;
  49. 52intnCol;
  50. 53nResult=sqlite3_get_table(db,&pResult,&nRow,&nCol,&errmsg);
  51. 54 55{
  52. 56sqlite3_close(db);
  53. 57cout<<errmsg<<endl;
  54. 58sqlite3_free(errmsg);
  55. 59 60}
  56. 61
  57. 62stringstrOut;
  58. 63intnIndex=nCol;
  59. 64inti=0;i<nRow;i++)
  60. 65{
  61. 66intj=0;j<nCol;j++)
  62. 67{
  63. 68strOut+=pResult[j];
  64. 69strOut+=":";
  65. 70strOut+=pResult[nIndex];
  66. 71strOut+="\n";
  67. 72++nIndex;
  68. 73}
  69. 74}
  70. 75sqlite3_free_table(pResult);
  71. 76cout<<strOut<<endl;
  72. 77sqlite3_close(db);
  73. 78 79}
  74. <spanstyle="color:#009900;">80/*
  75. 81intcallback(void*,intnCount,char**pValue,char**pName)
  76. 82{
  77. 83strings;
  78. 84for(inti=0;i<nCount;i++)
  79. 85{
  80. 86s+=pName[i];
  81. 87s+=":";
  82. 88s+=pValue[i];
  83. 89s+="\n";
  84. 90}
  85. 91cout<<s<<endl;
  86. 92return0;
  87. 93}*/</span>
原文链接:https://www.f2er.com/sqlite/199674.html

猜你在找的Sqlite相关文章