微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

sqlite 查看表结构 android.database.sqlite.SQLiteException: table splitTable has no column named

sqlite 插入数据数据时提示没有该列:

android.database.sqlite.sqliteException: table splitTable has no column named isLast (code 1):  

此时可以查看该表的创建结构,然后调整列名称,重新调用插入的方法

Cursor cursor = db.rawQuery("select * from sqlite_master where type= 'table'  and name='" + tableName + "'", null);
/**
 * 查询到结果对应的列名与位置
 * 0 = "type"
 * 1 = "name"
 * 2 = "tbl_name"
 * 3 = "rootpage"
 * 4 = "sql"
 **/
if (cursor.movetoNext()){
  String sql = cursor.getString(cursor.getColumnIndex("sql"));
  Log.d(TAG, "showCreateTable: sql " + sql);
}

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐