数据库操作语句写错,导致sqlite建表出现错误,查不到添加的数据,粗心导致

时间:2021-09-26 22:17:27

实践《第一行代码》的例子出现的粗心错误

public static final String CREATE_BOOK = "create table Book (" +"id integer primary key autoincrement, " +"author text, " +"price real, " +"pages integer" +"name text)"; 

建表错误如下:

数据库操作语句写错,导致sqlite建表出现错误,查不到添加的数据,粗心导致

修改代码后成功,其实就是一个逗号

public static final String CREATE_BOOK = "create table Book (" +"id integer primary key autoincrement, " +"author text, " +"price real, " +"pages integer" +"name text)";