gpt4 book ai didi

android - 如何在android room数据库sql中使用replace?

转载 作者:行者123 更新时间:2023-12-05 00:16:04 28 4
gpt4 key购买 nike

    @Query("update bookmarks set bookmarks_path= replace(bookmarks_path,:oldPath,:newPath) where bookmarks_path like :oldPath || '%'")
fun updateBookmarksPath(oldPath: String, newPath: String): Completable

我正在使用房间数据库,这是我的代码

运行时发现这段代码的格式不正确,android studio提示我:explosionexpected,got'replace'

像这样

enter image description here

我想要达到这样的效果

----路径------------------路径

/root/1/1--------------/stack/1/1

/root/name/1------/stack/name/1

/root/cls/1------------/stack/cls/1

/root/go/1------------/stack/go/1

/root/js/1------------/stack/js/1

最佳答案

REPLACE 都是 SQLite keyword并且,根据您的预期用途,字符串函数的名称:replace() 。Room 注释处理器似乎拒绝您的查询字符串,因为它将 replace 视为关键字而不是函数名称。也许是一个错误?

一些快速实验表明,一个可能的解决方案是用反引号将 replace 括起来,以将 is 标记为名称(请参阅上面的关键字链接)。请尝试一下:

@Query("update bookmarks set bookmarks_path= `replace`(bookmarks_path,:oldPath,:newPath) where bookmarks_path like :oldPath || '%'")
fun updateBookmarksPath(oldPath: String, newPath: String): Completable

关于android - 如何在android room数据库sql中使用replace?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62468205/

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