1
vote
1answer
18 views
not able to reset primary key numbering in SQLite table
I am trying to use "DELETE FROM SQLITE_SEQUENCE" SQL statement to reset the numbering system for _ID rowId that is the primary key for the table. This makes the first row as 1 again for the table. ...
0
votes
2answers
26 views
Load data in a ListView
I have a question, if I want to load a ListView directly from a database, for example on the first screen I'll have a search button that will search the database and display the results in another ...
-1
votes
2answers
48 views
Fetching Data from Database Issue in Android
I have three layout:
Main Layout(with a button "Profile")
Profile layout(With textview to show data from database and two button named as "Edit" and "Back to Main")
Edit layout(With textview and ...
0
votes
2answers
21 views
Getting database information to another class in Android
I basically used this tutorial on how to make a SQLite database, which is fine. I now have a new class named camera, where I want to get all the (or a single) phone numbers that are in the database, ...
0
votes
2answers
41 views
Android sqlite select statement troubles [duplicate]
I am trying to get some data from a sqlite table named Course, with a attribute Name.
I build the table here.
private static final String COURSE_ID = "CourseID";
private static final String ...
0
votes
0answers
31 views
Android application contact groups
I need phone contacts to be divided into groups in my application, but only in my application so i don't want to add any groups to original phone contact database. I have made my own database to have ...
-1
votes
1answer
65 views
Can't get any data from sqlite db on Android
I have a DB helper that does this function:
public Cursor getCourseNames() throws SQLException {
mDb = mDbHelper.getReadableDatabase();
return mDb.query("Course",null, COURSE_ROWID, null, ...
-2
votes
0answers
19 views
Service running database android [closed]
I am developing an app that runs a database via service, here is my implementation of service
private Timer mTimer = new Timer();
static final int UPDATE_INTERVAL = 1000;
SQLiteDatabase sqlh;
...
0
votes
1answer
23 views
How to integrate parse with phonegap
I want to developed an app for cross mobile platform (iOS / Andriod). I am using phonegap and parse for the same.
Super admin will upload the content of the app for particular user from the website, ...
0
votes
3answers
59 views
Application force close when i access delete method database
my application force closes when i access delete method, it works fine with insert and get items method.
in databasehandler,
public class DatabaseHandler extends SQLiteOpenHelper {
private static ...
0
votes
1answer
30 views
Android SharedPreferences or SQLlite Storing
I have a question. In my project I have some user preferences which are stored in the SQL database. There are about 200 records and the table has 3 columns. This records do not change, only if the ...
0
votes
1answer
21 views
Delete App DB present in mobile from the App using cordova
I want to drop the complete database related to my app from the app on occurence of some particular event.
How can I accomplish this ? I am using cordova to build my app and my app is for both ...
0
votes
1answer
42 views
how to check if the column of a SQLite dabase is null
i am not able to get a reliable result to tell if the collumn of a database is null or not. i tried using a query checking to see if the the column of the database returns null or a string value of ...
1
vote
2answers
51 views
how to store JSON object in SQLite database
how do I store a JSON Object in an SQLite database? What is the correct way?
one place is the blob type column. if i can convert the JSON object into byte array and use Fileoutputstream
the other ...
0
votes
1answer
24 views
Can't delete database item after page first loads
I have a task reminder that allows you to store info in a database and then edit or retrieve them later (like a notepad). Whenever starting the app and then going to the activity it will display the ...
0
votes
1answer
28 views
How to prevent to create database again from beginning
I have created a database like this:
public void onCreate(SQLiteDatabase db) {
db.execSQL("CREATE TABLE " + "sorular"
+ " (_id INTEGER PRIMARY KEY,"
+ ...
2
votes
1answer
32 views
When to save the state of an app
I am building an Android game. Now, I am saving all changes of the user state (matches in SQLite, user's preferences in SharedPreferences, and other data in files) in the onDestroy() method of the ...
0
votes
2answers
16 views
putExtra: How should I handle large arrays? Database or split to smaller arrays?
I like to know what of following ideas makes more sentence:
I have three Arrays with more than 5'000 entries. And when I try to put them into Extra, I became the FAILED BINDER TRANSACTION:
Split ...
1
vote
1answer
34 views
Android SQLite: Error creating second table in second Activity
I'm facing the current problem:
I have an application with a first Activity MainActivity and a second Activity called SecondActivity.
Now, in both of these I need a separate table:
This is my ...
0
votes
1answer
22 views
Maximum number of inserts per transaction
There is a maximum number of values that can be set in an insert statement using transaction?
Example of my Android aplication function:
public void addArray(ArrayList<MyObject> arrData) {
...
-2
votes
0answers
14 views
Java / Android: Pull database of 12 step meetings in user area [closed]
I'm currently working on an android app and I need to be able to pull a list of 12 step meetings in a user defined area. Does anyone know the best way to do this? I noticed this website: ...
0
votes
2answers
38 views
App crash while updating database
I'm currently developing an android app with eclipse. I got a problem while updating the database. The problem is the app crash while the updateFlag method is called. The updateFlag method only update ...
1
vote
0answers
29 views
How to handle collections with the visitor pattern?
I have to parse data from JSON files and insert data into my database. There are three files:
countries
[
{
"id": 1,
"name": "United States",
"org_ids": [
...
-2
votes
1answer
28 views
Load data in app [closed]
We have an app about some exams related stuff and we got stuck on how to load the app with questions as questions containing images and sometime only text.
So my question is what data structure we ...
0
votes
2answers
68 views
+50
start navigating to position which is stored in database
I have an application where I am getting the latitude and longitude coordinates.
I want , when to press a button to start navigating to that position .
Now , I am storing latitude and longitude in ...
1
vote
2answers
31 views
How do I index a CSV file which maps (mostly) consecutive integers to Strings so that I can search it efficiently in Java?
I have a large CSV file (8000 rows) consisting of two columns. The first column is an integer ranging from 1 to 10000, and the second column is a string of 6 to 10 characters. Because my ...
0
votes
1answer
50 views
Fetching image from SQLite database in android
I am unable to fetch the image from the database, please look at my databasehelper (that is my fetchimg(String i) and MainActivity (that is showmeth(View w)) class.
What I am actually doing here is ...
0
votes
1answer
33 views
SQLite Database on Android Not Storing Int Properly
I am creating an Android application to keep track of recipes. I am able to successfully store and retrieve the recipes, but my is_favorite value is not working correctly. When I send my boolean value ...
0
votes
2answers
69 views
Eclipse LogCat Error : android.database.sqlite.SQLiteException: no such table:
public class DBHelper extends SQLiteOpenHelper{
//The Android's default system path of your application database.
private static String DB_PATH = ...
0
votes
1answer
36 views
I can' t access to column that is added afterward by me. What should I do?
Firstly I created a table :
public void onCreate(SQLiteDatabase db) {
db.execSQL("CREATE TABLE " + "sorular"
+ " (_id INTEGER PRIMARY KEY AUTO_INCREMENT,"
+ "soruIcerik ...
0
votes
2answers
50 views
How to recieve data from database back into android
I have created a webservice called "login.php" where I send the id and password information from android. The webservice successfully catches the id and password. I need to compare that id and ...
0
votes
1answer
32 views
Database Query only returns column name
Hello and thanks for the help! My database has 4 columns and I need a way to return the newest item added to the last column each time. The column name is spinInterval and the value is an int.
...
0
votes
1answer
43 views
Converting JSON to String in Android with MySql project
I'm new on Android and I'm trying to connect my android application to my local server phpmyadmin. I've seen some tutorial about the interaction Android-MySql through PHP pages (using JSON), but I ...
0
votes
1answer
40 views
Android DatabaseHandler: deleting a row
I'm building an internal database in my Android application.
I use it to manage a shopping cart, so i need to delete, add and update rows
Java code:
public class DatabaseCarrello extends ...
0
votes
1answer
23 views
get a spinner list from database
I'm android beginner.I want to get the spinner list from sqlite database. I watched many times, but it is difficult to find out which one is incorrect.
here is the code...
public class SalesEntry ...
1
vote
1answer
29 views
Update multiple entries in single query. Android SQLite
I store around 30 items in database, they have own ID and POSITION. Quite frequently I need to update their positions. Doing it in loop is not a good idea due performance issues. So I'm thinking if ...
-1
votes
0answers
25 views
Populating Sqlite Database records on TextView Fails to process Html Characters
Android Sqlite displaying data on a TextView fails to print characters like
\n
\t
etc it is advised to use
html.fromhtml()
but that must involve the string resouce , mine is just data from ...
1
vote
1answer
223 views
ORMLite database update
According to a previous question that I've asked (see this), dropping and re-creating tables is not going to work very well if I make changes and add new data once I've
distributed the app, because ...
1
vote
2answers
89 views
Italic/Bold font in Sqlite Android
I m working on app which uses sqlite database . I got sucess to store Strings in various languages and also fetching from database .
But My problem is that i want to store it in bold or italic style.
...
2
votes
1answer
84 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 ...
-1
votes
2answers
136 views
How to open SQLite DB in java class
I am calling db in java class from activity(android).Is it possible to call like this from activity to java class.Am using this for server communication android.I got data from server but i cant able ...
1
vote
1answer
94 views
android list view from database
My application having SQLiteDataBase table having two fields
1.sender....
2.message
messagedb=context.openOrCreateDatabase("message",0, null);
messagedb.execSQL("CREATE TABLE IF ...
4
votes
6answers
4k views
android.database.CursorIndexOutOfBoundsException: Index 0 requested, with a size of 0
I am using custom adapter extending cursor adapter for displaying data in listview, to display particular phone number i have passed the id to a method in database class but it is showing
...
6
votes
1answer
2k views
Using SQLite from libGDX on Android
Does anyone have any tips on storing data from libGDX on Android in SQLite. I am very familiar with the techniques used in the Android SDK but I don't have any idea how to call those Android database ...
8
votes
3answers
1k views
Is this custom CursorAdapter for a ListView properly coded for Android?
I have never been happy with the code on my custom CursorAdapter until today I decided to review it and fix a little problem that was bothering me for a long time (interestingly enough, none of the ...
4
votes
3answers
3k views
Adding a database/backend to android applications
So I've been writing small android applications and i want to start writing bigger apps that have the ability to allow users to create accounts, allow me to store their account data online in some ...
21
votes
2answers
4k views
Pros and Cons of SQLite and Shared Preferences
what is the good mechanism to store information among SQLite database and Shared Preferences ?
Why we use shared preference ? Why we use sqlite ? these questions made me confusing ? i tried much to ...
3
votes
1answer
2k views
Android - SQLiteDatabases and Cursors
I was wondering if someone could give me a brief overview of Android Cursors. A couple of specific questions:
1 - I have a method which returns a cursor after a database query:
public static ...
4
votes
6answers
24k views
How do I create a database in android? [closed]
I need a step by step procedure for creating a database in Android.
64
votes
3answers
23k views
Version of SQLite used in Android?
What is the version of SQLite used in Android?
Reason: Im wondering how to handle schema migrations. The newer SQLite versions support an "ALTER TABLE" SQL command which would save me having to copy ...




