java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.design/com.example.design.houtai.admin_search_bookinfo}: java.lang.IllegalArgumentException: column '_id' does not exist. Available columns: [id, book_name, state, people_name, time, time_expired, Publicer, comment, writer]
时间: 2024-03-11 21:44:03 浏览: 93
java.lang.Exception: java.lang.IllegalArgumentException: firstMovedIndex, lastMo
5星 · 资源好评率100%
这个错误提示是因为您的程序在查询数据库时,使用了不存在的列名 "_id"。这是因为 Android 系统中的 SQLite 数据库默认会为表添加一个名为 "_id" 的列作为主键,但您的表中并没有这个列。
您可以尝试修改您的查询语句,将 "_id" 替换成您表中存在的列名。或者,您可以在创建表时手动添加一个名为 "_id" 的列作为主键,这样就可以使用默认的查询语句了。
阅读全文