SQLITE中rowid的问题

发布于 2024-08-27 11:53:02 字数 626 浏览 4 评论 0原文

我正在使用 SQLite C# 库,根据我的要求,在添加之前我将检索该表的 rowid。它工作正常,但当表为空时会出现错误。一旦我们添加任何数据(一行),它就可以正常工作。

        mDbCon  = GetConnection();
        SQLiteCommand cmd = mDbCon.CreateCommand();
        cmd.CommandText = " SELECT MAX(rowid) FROM " + “MYTABLE”;
        cmd.CommandType = CommandType.Text;
        mDbCon.Open();
        SQLiteDataReader sqReader = cmd.ExecuteReader();
        while (sqReader.Read())
        {
            if ( sqReader.IsDBNull(0) )
            {
                max = (Int32)sqReader.GetInt32(0);
            }
        }
        mDbCon.Close();

当表“MYTABLE”没有任何数据时,它会抛出异常。

I am using SQLite C# library and as per my requirement, before going to add I am retreving the rowid of that table. It is working fine but hetting error when table is empty. Once we add any data(a row) then it’s working fine .

        mDbCon  = GetConnection();
        SQLiteCommand cmd = mDbCon.CreateCommand();
        cmd.CommandText = " SELECT MAX(rowid) FROM " + “MYTABLE”;
        cmd.CommandType = CommandType.Text;
        mDbCon.Open();
        SQLiteDataReader sqReader = cmd.ExecuteReader();
        while (sqReader.Read())
        {
            if ( sqReader.IsDBNull(0) )
            {
                max = (Int32)sqReader.GetInt32(0);
            }
        }
        mDbCon.Close();

It’s throwing exception when table “MYTABLE” don’t have any data.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

┈┾☆殇 2024-09-03 11:53:02

这应该对你有用。

SELECT IFNULL(MAX(RowId), 1) AS Id FROM MYTABLE

This should work for you.

SELECT IFNULL(MAX(RowId), 1) AS Id FROM MYTABLE
玩物 2024-09-03 11:53:02

尝试 int maxRowID = Convert.Int32(cmd.ExecuteScalar());

try int maxRowID = Convert.Int32(cmd.ExecuteScalar());

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文