摘要:
【问题描述】利用C编写CGI程序,如何控制sqlite3,进行基本的数据库操作?【简介】需要建立的变量sqlite3 *db;int nrow = 0, ncolumn = 0;char **azResult = NULL;char *zErrMsg = 0; char sql[500];int rc = 0;需要包含的头文件#include <sqlite3.h>备注:详见搭建sqlite3嵌入式开发环境,安装后,会产生一个sqlite3.h的文件。1 打开数据库(open)rc = sqlite3_open("test.db", &db);if (r 阅读全文