-1
votes
1answer
34 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
20 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
40 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
27 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, ...
-1
votes
0answers
19 views

Service running database android

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
56 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
20 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
42 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
27 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
33 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
28 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
56 views
+50

how to extract data from database and use it to navigate

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 . Generally,if I want to find my position I use ...
1
vote
2answers
30 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
47 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
65 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
49 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
42 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 ...
-3
votes
0answers
40 views

How to work with big databases (more GB) on android? [closed]

I have a question if it is possible to work with big databases (millions of rows and cca. 5GB-10GB, one table has 250 columns - don't ask me why) and if yes then how?. I need to create an application, ...
1
vote
2answers
39 views

Security between Android app and external database

After having read a lot of topics, and questions on stackoverflow about how to access external databases (MySQL) through an Android app, my question is : How to make sure that only MY app will be able ...
0
votes
1answer
28 views

How to update the old database file with the new database file in android?

I am having an application which i uses sqlite .db in that. I am having a existing Database file in that application . So now what i have to do is i have to make a connection and i should download the ...
-1
votes
2answers
85 views

Android retrieve image from sqlite and pass it to next activity through listview item

Thanks in advance. I sucess to pass data from list view to next activity but now i need to add an image from my database to listview and then pass it to the next activity. Or if it's easeiest just ...
0
votes
1answer
30 views

Database SQLite cannot created?

This is continued from my previous question here. I've made code for database, but when I run my apps it won't create database. I don't know where I got wrong, but in eclipse my code don't show any ...
0
votes
0answers
17 views

MediaStore and own database - inner join

I've a problem with implement an inner join with my own database and MediaStore database. I've got a table with favorite tracks id, the point is that i want to get all tracks from media store with ...
1
vote
1answer
35 views

How to upgrade sqlite database?

I have an sqLite database in my app which store high scores. I recently added a new column(levels) and need to upgrade the database, otherwise the app crashes. If I delete manually the .db file works ...
0
votes
2answers
44 views

Android - Database SQLite - convert boolean values

I am working on an Android project with a SQLite database and have a column in the database consisting of a boolean value (which store 1s and 0s) of whether an individual in the database is important. ...
0
votes
1answer
48 views

I need to get the value from the Database

I have finally succeeded in adding another column in the database but now have no idea how to get it out! This is for a reminder app and the info gets passed to an alarm manager class here public ...
0
votes
2answers
32 views

App crash while getting data from database

First of all I'm sorry I don't speak very good english. I'm currently developing an android app with eclipse and I have problem while fetching data from database. This is the method to read data from ...
0
votes
1answer
78 views

How to store data from website to parse.com And how to to fetch data of it in my application

I want to use the parse database for developing web app, since data will upload from the desktop PC and retreival of the same will be done in parse mobile application. Is it possible to use the parse ...
-4
votes
1answer
19 views

android sqlite database import does not change

I want to modify the android application data base. I export and modify and import again. But the data import does not change. I use the sqlitestudio tool. What is the problem? Any idea?
0
votes
3answers
29 views

Converting datepicker to string

How do you convert a DatePicker value to a String? Currently I have a TextView setup, which the DatePicker passes its value to. Its displayed fine. Using that String to pass to a SQLite database ...
-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
221 views

ORMLite database uodate

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 ...
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 ...
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 ...
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.

1 2 3 4 5 74