我是初学者。我学会了SQLite
。我不明白函数db.execSQL (DATABASE_CREATE)
;
private static final String DATABASE_CREATE = "create table users (_id integer primary key autoincrement, " + "name text not null);";
因此,功能
db.execSQL()
。怎么说呢?请帮我。谢谢, 最佳答案
在SQLiteDatabase
的Android SDK documentation中:execSQL(String sql): Execute a single SQL statement that is NOT a SELECT or any other SQL statement that returns data.
在您的示例中,要创建表,您将调用db.execSQL(DATABASE_CREATE)
,它将在应用程序的SQLite数据库上执行表create语句。
关于android - 关于SQLite中的函数db.execSQL()?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9624875/