gpt4 book ai didi

c++ - 运行 C++ 应用程序后出现 SQLite 控制台

转载 作者:太空宇宙 更新时间:2023-11-04 14:12:54 28 4
gpt4 key购买 nike

我的问题是,当我运行主 .cpp 文件时,SQLite 控制台出现并等待命令,而不是执行代码中的操作并产生一些输出。问题是什么?好吧,代码只是一个测试,以确保一切正常:

#include "sqlite3.h"
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
sqlite3 *database;
sqlite3_open("Database.sqlite", &database);
sqlite3_stmt *statement;

if (sqlite3_prepare_v2(database, "CREATE TABLE a (b INTEGER, c INTEGER);", -1, &statement, 0) == SQLITE_OK) {
int cols = sqlite3_column_count(statement);
cout << cols;

int result = sqlite3_step(statement);
}
return 0;
}

最佳答案

不要将 sqlite 的 shell.c 包含到您的项目中。

关于c++ - 运行 C++ 应用程序后出现 SQLite 控制台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13308633/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com