gpt4 book ai didi

c# - Windows XAML 中的 SQLite (PCL) 查询不允许超过 21 列?

转载 作者:行者123 更新时间:2023-11-30 16:53:21 25 4
gpt4 key购买 nike

我用过 SQLite-PCL在我的通用 Windows 8.1 运行时应用程序中。
我的项目中有一张包含23 列 的大表。问题是 - 虽然表创建和数据插入代码运行时没有任何错误,但在全列查询中 (SELECT * FROM table) 没有给我超过 21 列。

这是我的创建表方法(运行正常):

    private void CreateTable()
{
string CREATE_TABLE_SQL = @"CREATE TABLE IF NOT EXISTS "
+ TABLE_NAME
+ "( "
+ KEY_ID + " INTEGER PRIMARY KEY, " // 0
+ KEY_UPDATED_AT + " TEXT, " // 1
+ KEY_CREATED_AT + " TEXT, " // 2

// ... all other column names are stated here in the similar way

+ KEY_LAST_EDITED_BY + " INTEGER, " // 20
+ KEY_LAST_EDIT_TIME + " TEXT, " // 21
+ KEY_IS_LD + " INTEGER " // 22
+ ");";
using (var connection = new SQLiteConnection(DB_NAME))
{
using (var statement = connection.Prepare(CREATE_TABLE_SQL))
{
statement.Step();
}
}
}

这是我的行插入 SQL 查询(它也运行正常):

string insQuery = 
@"INSERT INTO " + TABLE_NAME
+ " ( " + KEY_ID + ", " //1
+ KEY_UPDATED_AT + ", "//2
+ KEY_CREATED_AT + " , "//3
// all other col. names are stated here
+ KEY_LAST_EDITED_BY + ", "//21
+ KEY_LAST_EDIT_TIME + ", "//22
+ KEY_IS_LD + " "//23
+ " ) "
+ " VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);";

但是,如果我查询所有行或包含所有列的特定行,则准备好的语句不能超过索引 20,因此我假设其中不包含超过 21 列。这是无法正常运行并在访问第 21 项期间给出 NullReferenceException 的代码:

public List<MyModel> GetAll()
{
List<MyModel> objList = new List<MyModel>();

string query = @"SELECT * FROM " + TABLE_NAME
+ " ORDER BY " + KEY_ID + " DESC;";
using (var connection = new SQLiteConnection(DB_NAME))
{
using (var statement = connection.Prepare(query))
{
// The next line prints this: "Statement data-count=0, ColumnCount=23"
ALog.d("Statement data-count=" + statement.DataCount +
", ColumnCount=" + statement.ColumnCount);
while (statement.Step() == SQLiteResult.ROW)
{
try
{
int id = Int32.Parse(statement[0].ToString());
string updatedAt = statement[1].ToString();
string createdAt = statement[2].ToString();
// ... all other values are extracted here, then I'm building
// my user object & the next line prints my expected values
ALog.d("User: " + user.ToString());

// ... the remaining columns are got here nicely
string imgUrl = statement[19].ToString();
int lastEdt = Int32.Parse(statement[20].ToString());

// This line is the culprit giving out NullReferenceException >_<
string lastEdtTm = statement[21].ToString();
bool isLd = Int32.Parse(statement[22].ToString()) > 0;

objList.Add(new MyModel(
// Params. of the constructor goes here ...
));
}
catch (Exception e)
{
ALog.d("Db - GetAll() : Exception:: " + e.ToString());
}
}

// This line prints as: "Statement data-count=23, ColumnCount=23"
// That means - all my data & columns have been queried,
// but I couldn't read values from statement[21] & statement[22]
ALog.d("Statement data-count=" + statement.DataCount +
", ColumnCount=" + statement.ColumnCount);
statement.Reset();
statement.ClearBindings();
}
}

return objList;
}

请注意,我在项目中有超过 10 个表且列数少于 17 且所有这些都工作正常。

最佳答案

问题与这样的行有关:

string lastEdtTm = statement[21].ToString();

在这里,如果 statement[21] 返回一个 null 值,那么这相当于 null.ToString(),它将抛出一个异常(exception)。

简单修复:

string lastEdtTm = statement[21] == null ? "" : statement[21].ToString();

如果 statement[21] 解析为 null,这将返回空字符串,否则返回字符串值。

请注意,您应该对所有可能返回 null 的列执行此操作 - 只是因为您现在在其他地方没有得到该异常,并不意味着您以后可能不会在新的时候得到它添加了行,其中可能缺少其他值。

关于c# - Windows XAML 中的 SQLite (PCL) 查询不允许超过 21 列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31578519/

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