五陵年少金市东,银鞍白马渡春风。这篇文章主要讲述Sqlite表在小米Note 7s上不创建,但在其他手机和Android Studio中的虚拟设备上创建。相关的知识,希望能为你提供帮助。
我不知道为什么会发生这种情况,但当我执行代码时,没有在红米Note 7s上创建表,但在GIONEE智能手机和虚拟设备上工作正常。
package com.example.attendance;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import androidx.annotation.Nullable;
public class Databases extends SQLiteOpenHelper {public staticfinal String dbname = "AttendanceDb11";
public Databases(@Nullable Context context) {
super(context, dbname, null, 5);
}@Override
public void onCreate(SQLiteDatabase db) {
String CREATE_TABLE = "CREATE TABLE IF NOT EXISTS Student12 ( _id INTEGER PRIMARY KEY
AUTOINCREMENT, Name Text)";
db.execSQL(CREATE_TABLE);
}@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("Drop table if exists Student12");
onCreate(db);
}
}
答案有可能你的设备已经有了
AttendanceDb11
版本1,但没有表。卸载你的应用程序以摆脱旧的数据库版本。【Sqlite表在小米Note 7s上不创建,但在其他手机和Android Studio中的虚拟设备上创建。】尝试更改数据库名称
public staticfinal String dbname = "AttendanceDb11.bd";
而不是
public staticfinal String dbname = "AttendanceDb11";
当你创建数据库和表时,应该会出现错误。请粘贴该错误。
推荐阅读
- 在android studio中引用Firestore
- Apple为什么说iPhone应用程序使用MVC()
- 如何在Android Studio中将Pdf文件转换为文本
- 在Odoo中的Many2Many字段插入请求在android中不起作用
- App爬虫----adb的使用
- pi币可期(区块链,派币),app翻译
- ESP8266环境监测系统+制作手机App在线实时显示
- App的爬虫----Appium的介绍
- Asp.net Core-IHostingEnvironment和IApplicationLifetime的使用