Tagged Questions
0
votes
3answers
61 views
ANDROID: Dropping SQLite database on upgrading application
I implemented an Android application which use Sqlite database.
When I release a new version of my application (not in playStore), I upload it on my server, so, if the old application is running, ...
0
votes
1answer
31 views
how to upgrade the sqlite database without lost data?
I have an application in C# that uses System.Data.SQLite. In my case I use a recent version of SQL Lite database, by now I can see that the new versión has released, and int sqlite.org webpage says ...
1
vote
2answers
124 views
Android SQLite database upgrade, get previous version
Is there a way, when there is a database upgrade with onUpgrade() method, to get the previous database?.
I mean, if current database version in 2 and I change it to 3, onUpgrade method is called, but ...
0
votes
1answer
66 views
Android SQLite OnUpgrade Error
I'm currently using an sqlite database for an android app.
Firstly I am wondering if there is a proper way to upgrade a sqlite database based on new information. Currently I have my information ...
0
votes
1answer
36 views
Upgrading iPhone App (made in 2009) to New Version (Help Required)
Just looking for some pointers, guidance and reassurance to make this transition as smooth as possible.
I created an iPhone App and it has been in the store since 2009. Recently i've been inspired to ...
1
vote
0answers
39 views
How to upgrade sqlite database from db file
I have Android app that use SQLite database. I'd like to upgrade database from SQLite *.db file created from SQLServer using this converter. Any idea or example how to do that?
Thanks!
1
vote
2answers
407 views
Android Jelly Bean: Database corrupted on upgrade
In my application, I create a database by copying over an existing sqlite database that is saved in my assets folder.
In the code I also check the database version, so if a newer version of the ...
0
votes
1answer
46 views
upgrading tables with autoincrement fields and relations
I have got 2 tables. Headers with names and details with texts:
create table Headers (_id integer primary key autoincrement, name string);
create table Details (_id integer primary key autoincrement, ...
1
vote
1answer
79 views
Updating Static DB in Android App
I have an app I need to update with new data for the DB. There's nothing else there to update, no schema changes, no code changes. All I want to do is add some rows to a DB that the user can't modify.
...
1
vote
1answer
97 views
How to modify type in a table of SQLite in Android, using onUpgrade method?
Following this good example http://code.google.com/p/openintents/source/browse/trunk/notepad/NotePad/src/org/openintents/notepad/NotePadProvider.java?r=3878
I implement my sqlite database upgrade ...
2
votes
1answer
87 views
Upgrading the SQLite Database of a Production Android App, is this Correct?
As the title says, I have a production Android app with about 1000 installs. I had to make a DB change in SQLite, up to this point the version of the SQLite DB has been set to version "1".
Hopefully ...
2
votes
2answers
1k views
onUpgrade() sqlite database in Android
I creted an Android application which, check at startup if there is anew version of application. If yes, the application download the new apk file and over-install new apk.
My application use the ...
0
votes
2answers
574 views
Android SQLite Upgrade without losing data
I have created a SQLite database successfully and it works fine. However when the onUpgrade method is called, I'd like to do so without losing data. The app I'm developing is a quiz app. Simply, when ...
0
votes
2answers
106 views
Update android application
I developed an Android application. I installed the apk on my tablet.
Now, I want just modify few code lines and one table of my SQLite database, but I don't want reinstall my apk, I want make an ...
0
votes
2answers
71 views
Android dealing with database versions regarding updates
Is there any documentation on how to best deal with database upgrades in android?
I am developing an application and have been testing it on my own telephone. All works fine, over the past few ...
0
votes
1answer
68 views
Upgrade database. Can I alter tables or need to create new?
I'm using a database in my application which is currently on the Google Play. Now I'm releasing an update and have added a new column to an existing table. Looks like I need to use onUpgrade() method ...
0
votes
0answers
116 views
Upgrading certain tables in a pre-created sqlite database
I have some upgrades I need to perform to a pre-created sqlite database that is packaged with my app.
My app has the following tables: dialogue, expression, master, quiz, score
The upgrades that I ...
1
vote
1answer
1k views
App crashes upgrading sqlite database first time
my app experiences a crash when the sqlite database is updated the first time. Reloading the app, it works fine from then on. I'm guessing this has to do with the onUpgrade function then. I can't seem ...
1
vote
2answers
157 views
Android pre-packaged database update
I'm developing a quiz-type application for android, and aiming to be able to expand the question bank over time. To do this, I'm pre-packaging the SQLite database, and checking for updates and ...
1
vote
4answers
2k views
Sqlite database onUpgrade() does not get called
I am working on an android application where i used existing sqlite database in the asset folder. So i actually copy the database from that folder. User can also save their own data(mark any content ...
0
votes
0answers
64 views
sqlite database upgrade for multiple databases
I am working on a collection of 'saying' applications. There is an option to change language.
So I am using 3 sqlite database's for 3 different languages and the user can mark their favorites.
Now ...
11
votes
3answers
600 views
Keeping the same SQLite database when upgrading and Android app from Lite to Pro version
First of all I have done a search and can't find a specific answer to my question so here goes...
I am writing my first Android application and plan to have a Lite version (limited features) and a ...
0
votes
4answers
315 views
Android database approach for future updates
What is the best way to work with the sqlite database in android?
The sqlite database file (copy it for the first time into the application environment)
OR
Creating the tables in code (in database ...
1
vote
1answer
899 views
How do I upgrade a database without removing the data that the user input in the previous database?
I am creating an app that needs a database. I created it using sqlite database browser, which means the app I created, imports the database I created into the phone.
The app that I create requires ...
1
vote
2answers
648 views
Upgrading Android application data with multiple tables (without destroying unaffected tables)
In my Android application; I have a single database with multiple tables.
Each table is more-or-less separate from each other, but figured (for best practice?) to just have one DB file.
When it ...
3
votes
1answer
127 views
upgrade blackberry database
In my application, I have a database that gets written out to the sdcard. We have had to make a lot of big changes to the database, so when the user upgrades the application, is there a way to delete ...
1
vote
2answers
683 views
add new table onUpgrade android
During an upgrade, I want to add a new table to my database, but also not lose the data from the other tables when upgrading the application. Can someone tell me, (but if you could show me some ...
0
votes
1answer
1k views
Android database versioning
I want the sqlite database of my app to be cleared each time the application is updated.
To do that, I make a drop table query on all my tables, in the "onUpgrade" function of SQLiteDatabase.
I got 2 ...
3
votes
2answers
3k views
onUpgrade database - oldVersion - newVersion
I am using this DataBaseHelper.class and I am stuck on the onUpgrade()-method. I do not know how to figure out what the version number of the database is. I could set the version to 1, the first time ...
0
votes
2answers
691 views
Replace SQLite DB content when updating app
I have an iPhone app with a SQLite DB storing all the information similar to a book. The user only reads information off the DB and won't update it as the app does not allow update of data. When there ...
0
votes
1answer
56 views
Upgrading a Ruby on Rails application to rails 3
I've been considering upgrading to rails 3 for some time now. It's now become viable for me to re-create my application (with a few extra bells and whistles). I can re-make the application with no ...
1
vote
1answer
500 views
Losing SQLite DB data after application upgrade - how it can be?
In my application I'm storing data in SQLite database. And from time to time I'm releasing new versions of application, but never changing database schema. One of my customers reported me that each ...
0
votes
1answer
895 views
OnUpgrade not using drop table/create table/insert into
I really like this approach for handling sqlite database when developing for Android but I have a question when it comes to upgrading the database during an upgrade of the application. Is this method ...
1
vote
3answers
362 views
Upgrade the version sqlite3 used by xcode?
I wish to use the foreign keys facility, and thus upgraded my version of sqlite to the latest stable version 3.7.2.
I've verified the version in terminal by entering in:
> whereis sqlite3
= ...
6
votes
2answers
4k views
Upgrade SQLite database from one version to another?
I am getting an error from Logcat saying that a certain column (in my SQLiteOpenHelper subclass) does not exist. I thought I could upgrade the database by changing the DATABASE_CREATE string. But ...
2
votes
2answers
4k views
Efficient batch SQL query execution on Android, for upgrade database
As we Android developers know, the SQLiteDatabase execSQL method can execute only one statement.
The doc says:
Execute a single SQL statement that is not a query. For example, CREATE TABLE, ...
4
votes
2answers
9k views
How to update table schema after an app upgrade on Android?
I have an unfinished application, but I want to address now the future update of it.
Suppose my app was upgraded, so when starts, detects that the database schema is outdated. So for each table has ...
0
votes
1answer
112 views
iPhone App Updgrade Query
I'm developing iphone app which take pictures and store it in iphone (within app folder) and picture name and other information stored in sqllite database.
If in future, I will release new version ...