I want to use a preloaded database. The database must be attached to the application, and then be able to update. I have a number of doubts about how to connect it to avoid problems. I ask professionals who deal with this problem to answer. Thanks.
If my database is larger than 1 MB, it throws a D / asset error (909): data exceeds UNCOMPRESS_DATA_MAX. They can be broken into chunks smaller than 1 megabyte and can be changed to enlarge (".Jpg", "Jpeg", ".Png", "Gif", ".wav", ".png", "." Mpg ", "mid", "midi", "smf", "jet", ". rtttl", ".mp3", "mpg", ". imy", "xmf", "mp4", "m4a", ". m4v "," .3 gp "," .3 gpp "," .3 g2 "," .3 gpp2 "," amr "," .bb "," wma ",". Wmv "). Which option is better (easier - change the extension).
Perhaps there is no "There is no such android_metadata table", but I manually added en_US to the database, but what if the application is multilingual?
When reading a database, I use the mDb = getReadableDatabase (); method, but I'm at the end of a private read - mDb.close (); As they say on the Internet, some mistake may not bother. Unable to open the database file. This is especially true for HTC devices.
The following quotation code
public class QuestionsDbAdapter extends SQLiteOpenHelper { private String DATABASE_PATH = "/data/data/YOUR_PACKAGE/"; public static final String DATABASE_NAME = "mantestQuestions"; public static final String TABLE_QUESTIONS = "Questions"; public static final String QUESTIONS_COLUMN_ID = "_id"; public static final String QUESTIONS_COLUMN_QUESTION ="Question"; public static final String TABLE_ANSWERS = "Answers"; public static final String ANSWERS_COLUMN_ID = "_id"; public static final String ANSWERS_COLUMN_QUESTION_ID = "QuestionId"; public static final String ANSWERS_COLUMN_ANSWER = "Answer"; public static final String ANSWERS_COLUMN_POINT = "Point"; private SQLiteDatabase mDb; private final Context mContext; private boolean mCreateDatabase = false; private boolean mUpgradeDatabase = false; public QuestionsDbAdapter(Context context) { super(context, DATABASE_NAME, null, context.getResources().getInteger(R.integer.questionDbVersion)); mContext = context; } public void initializeDatabase(String path) { DATABASE_PATH = path; getWritableDatabase(); if(mUpgradeDatabase) { mContext.deleteDatabase(DATABASE_NAME); } if(mCreateDatabase || mUpgradeDatabase) { try { copyDatabase(); } catch (IOException e) { throw new Error("Error copying database"); } } } private void copyDatabase() throws IOException { close(); InputStream input = mContext.getAssets().open(DATABASE_NAME); String outFileName = DATABASE_PATH + DATABASE_NAME; OutputStream output = new FileOutputStream(outFileName);
Roman source share