#include "stdafx.h"#include "sqlite3.h"sqlite3 * pDB;int createTable(){ char* errMsg; std::string dropTab = "drop table test_tab;"; string strSQL= "create table test_tab (f1 int, f2 long);"; int res= ... Read More
posted @ 2008-11-09 00:50 zeus2 Views(2406) Comments(0) Diggs(0) Edit