gpt4 book ai didi

actionscript-3 - AIR 和 sqLite : if table exists conditional

转载 作者:行者123 更新时间:2023-12-03 16:45:24 25 4
gpt4 key购买 nike

无论数据库中是否存在表或条目,如何在 AS3 中获取 bool 值?

最佳答案

与使用 SQL 手动查找相反,您应该使用内置的架构信息类/函数。这是它如何工作的一个例子。

public function doesTableExist(connection:SQLConnection, tableName:String):Boolean
{
connection.loadSchema();
var schema:SQLSchemaResult = connection.getSchemaResult();

for each (var table:SQLTableSchema in schema.tables)
{
if (table.name.toLowerCase() == tableName.toLowerCase())
{
return true;
}
}
return false;
}

关于actionscript-3 - AIR 和 sqLite : if table exists conditional,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4601707/

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