博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VS2008下使用CppSQLite3访问xgs黑名单表(SQLite数据库)
阅读量:4045 次
发布时间:2019-05-24

本文共 423 字,大约阅读时间需要 1 分钟。

VS2008下使用CppSQLite3访问xgs黑名单表(SQLite数据库)

2014年4月9日17:32:10

代码:

#include 
#include
#include "CppSQLite3.h"#include
using namespace std;int main(){ printf("hello,world!\n"); CppSQLite3DB db; db.open("ETCVoidCard.db3"); CppSQLite3Query query = db.execQuery("select * from ETCVOIDCARD"); //while(!query.eof()) if(!query.eof()) { cout<<"CARDNETWORK:"<
<<" CARDID:"<
<

转载地址:http://fnwci.baihongyu.com/

你可能感兴趣的文章
机器学习实战之决策树二
查看>>
[LeetCode By Python]7 Reverse Integer
查看>>
[leetCode By Python] 14. Longest Common Prefix
查看>>
[LeetCode By Python]121. Best Time to Buy and Sell Stock
查看>>
[LeetCode By Python]122. Best Time to Buy and Sell Stock II
查看>>
[LeetCode By Python]125. Valid Palindrome
查看>>
[LeetCode By Python]136. Single Number
查看>>
Android/Linux 内存监视
查看>>
用find命令查找最近修改过的文件
查看>>
Android2.1消息应用(Messaging)源码学习笔记
查看>>
android raw读取超过1M文件的方法
查看>>
ubuntu下SVN服务器安装配置
查看>>
MPMoviePlayerViewController和MPMoviePlayerController的使用
查看>>
CocoaPods实践之制作篇
查看>>
[Mac]Mac 操作系统 常见技巧
查看>>
苹果Swift编程语言入门教程【中文版】
查看>>
捕鱼忍者(ninja fishing)之游戏指南+游戏攻略+游戏体验
查看>>
iphone开发基础之objective-c学习
查看>>
iphone开发之SDK研究(待续)
查看>>
计算机网络复习要点
查看>>