gpt4 book ai didi

ios - 如何在 SWIFT 的 sqlite 表中添加列

转载 作者:IT王子 更新时间:2023-10-29 06:28:25 24 4
gpt4 key购买 nike

我尝试使用 swift 在表格中添加一列。

我的代码:

  connect_db();
adddbfield("mynewfield","mytable");

.

func connect_db() -> Bool {
let sDBPath=<is correctly set>;
if sqlite3_open(sDBPath, &db) != SQLITE_OK {
println("Failed to open db")
return false;
}else{
return true;
}
}

.

func adddbfield(sFieldName:String, sTable:String) -> Bool {
var bReturn:Bool=false;
var sSQL="ALTER TABLE " + sTable + " ADD COLUMN " + sFieldName + " INTEGER DEFAULT -1";
var statement:COpaquePointer = nil
if sqlite3_prepare_v2(db, sSQL, -1, &statement, nil) != SQLITE_OK {
println("Failed to prepare statement")
}else{
println("field " + sFieldName + " added to " + sTable);
bReturn=true;
}
return bReturn;
}

使用此代码,不会添加任何字段,也不会发生错误。有什么帮助吗? (我想使用对 sqlite 的本地访问,而不需要额外的库)

最佳答案

您只是在准备语句,而不是执行它。您需要调用 sqlite3_step()sqlite3_finalize() 方法来完成该过程。

func adddbfield(sFieldName:String, sTable:String) -> Bool
{
var bReturn:Bool = false;
var sSQL="ALTER TABLE " + sTable + " ADD COLUMN " + sFieldName + " INTEGER DEFAULT -1";
var statement:COpaquePointer = nil
if sqlite3_prepare_v2(db, sSQL, -1, &statement, nil) != SQLITE_OK
{
println("Failed to prepare statement")
}
else
{
if sqlite3_step(statement) == SQLITE_DONE
{
println("field " + sFieldName + " added to " + sTable);
}
sqlite3_finalize(statement);
bReturn=true;
}
return bReturn;
}

关于ios - 如何在 SWIFT 的 sqlite 表中添加列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30910741/

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