Android:如何将 ExecuteScalar 移植到 Java?

发布于 2024-12-04 03:18:13 字数 400 浏览 2 评论 0原文

SqlCommand.ExecuteScalar方法
执行查询并返回 返回的结果集中第一行的第一列 询问。附加的列或行将被忽略。

我想这将涉及大量使用泛型。

假设我有一个 SQLiteDatabase/Cursor 对象。

SqlCommand.ExecuteScalar Method
Executes the query, and returns
the first column of the first row in the result set returned by the
query. Additional columns or rows are ignored.

I guess this will involve heavy use of generics.

Assume I have an SQLiteDatabase/Cursor object.

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

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

发布评论

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

评论(4

小瓶盖 2024-12-11 03:18:13

看看 SQLLiteStatement

long simpleQueryForLong() 执行返回 1 x 1 的语句
带有数值的表。

String simpleQueryForString() 执行一条返回带有文本值的 1 x 1 表的语句。

Have a look at SQLLiteStatement

long simpleQueryForLong() Execute a statement that returns a 1 by 1
table with a numeric value.

String simpleQueryForString() Execute a statement that returns a 1 by 1 table with a text value.

墨离汐 2024-12-11 03:18:13

这个逻辑对我有用:

public int ExecuteScalar(/* code...*/) {
    Cursor cursor = database.rawQuery(sql, selectionArgs);
    try {
        cursor.moveToNext();
        int val = cursor.getInt(0);
        cursor.close();
        return val;
    }   
    catch (Exception e) {
        /* code...*/
    }
    return -1;
}

This logic worked for me:

public int ExecuteScalar(/* code...*/) {
    Cursor cursor = database.rawQuery(sql, selectionArgs);
    try {
        cursor.moveToNext();
        int val = cursor.getInt(0);
        cursor.close();
        return val;
    }   
    catch (Exception e) {
        /* code...*/
    }
    return -1;
}
风柔一江水 2024-12-11 03:18:13

如果您要检索主键,则可以使用语句 getGenerateKeys 方法,该方法在插入后返回生成键的结果集。

If you're retrieving a primary key then you can use the statement getGeneratedKeys method which returns a resultSet of generated keys after an insert.

可爱暴击 2024-12-11 03:18:13

给出的数据库对象是db

long result = db.compileStatement("select count(*) from some_table").simpleQueryForLong();

Giving the database object is db

long result = db.compileStatement("select count(*) from some_table").simpleQueryForLong();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文