Tagged Questions
0
votes
3answers
54 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
21 views
update query to last inserted raw id in sq-lite
I have a table in which i m inserting datas except one field at a time, another time i want to insert the non filled data, i m trying to update the table with this value. i tried the below query but ...
0
votes
0answers
23 views
Is it possible to use date functions when creating an SQLite view?
Say that I have a table with the following schema:
create table events
(
_id integer primary key autoincrement,
title text not null,
date text not null
);
And I want to create a view ...
1
vote
2answers
28 views
copying data from table to table sqlite android
can I copy data from table to another using this query:
// table1( tid , uid, name, link)
// table2(mid , uid , name, link)
query = "INERT INTO TABLE2 ("+ getIdFromFunction()+" , uid, name, link) ...
0
votes
3answers
26 views
SQLiteException: table already exists
I added to my DB the table called "MEDIA_TABLE" and i got the following error code:
05-15 20:56:22.976: E/AndroidRuntime(5968): android.database.sqlite.SQLiteException: table personal_stats already ...
1
vote
2answers
16 views
droping table vs removing its content sqlite
in my application I have to delete whole contents of a table and refill it many times
in that case I have two solutions :
1- drop , recreat and fill the table
"DROP TABLE IF EXISTS TABLE_NAME"
2- ...
1
vote
0answers
17 views
what all data needs to be deleted to make it equivalent to application uninstall
I came into a very strange problem. In my application, there is a synch process that runs every 3000 milliseconds and synchs the data from local database(SQlite) to server database.
Now when I create ...
0
votes
2answers
44 views
no such column in table SQLite android
helo i have created a table named produittable, i need to save some data from editText
and after search it in a list, but the logCat says that no column named description_produit
and for me it's there ...
0
votes
3answers
28 views
CursorIndexOutOfBoundsException while querying SQLite in Android code
Kindly note that I am trying to retrieve values from table in SQLite DB in my android app, on a button click event and present it through a ListView.I am able to insert records into the table on same ...
0
votes
0answers
11 views
Getting Less items after synch without app reinstall and all items after app reinstall
So after logout, my application data in sqlite DB is pruned and when I login back, the same data is taken from server DB. The data transfer from local db to server db happens when a new record is ...
1
vote
0answers
16 views
Create a foreign key in SQLite database browser
Sorry for novice question.
I have created my tables using SQLite database browser, but:
I do not know how can I specify my foreign keys using the application?
How can I create a relationship ...
1
vote
2answers
49 views
Insertion to SQLiteDatabase
I wrote this code:
// CurrentFriendsTable
// ---------------------
//| _id | email | uname |
// ---------------------
// FFriend class
class FFriend {
String email, uname;
// getter and ...
0
votes
1answer
33 views
I can't update the SQLite database Android
I have a database with different tables, till now I was updating the database without problems. but now I want to add a new row in "TABLE_ALERTAS" even I upload the database version "DATABASE_VERSION ...
0
votes
2answers
29 views
Retrieving last inserted n records from a table in SQLite
i want to retrieve last inserted 'n' number of rows from an sq-lite table. i used the below query but i m getting error, plz help me to correct my query. If my query is wrong please suggest me a ...
0
votes
2answers
21 views
Update application SQLite database created by Assets DB
I have Database in my application which is created by just coping the SQLite database file from the assets folder but now in the next release I want to update the database without losing the previous ...
-1
votes
2answers
103 views
Unable to insert data in the table residing in SQLite database in my android app
Kindly note that I am designing an app which involves creation of database on running for first time and simply opening it in the runs to follow.So I have handled it the following way in my ...
0
votes
1answer
58 views
Android ContentProvider SQLite : SQLiteMisuseException
I have a simple ContentProvider following the step from vogella.com with some changes because I'm using android-support-v4.jar I have a simple App
Here i have three buttons and one ListFragment ...
0
votes
1answer
21 views
Illegal State Exception while opening a SQLite database in android
So, I have a class, named DatabaseHandler that inherits SQLiteOpenHelper. This class is incharge of managing a database that copies information from an online database to the cellphone. Now, the ...
0
votes
1answer
83 views
store an EditText value into SQLite database line by line
i made an EditText that displayed value with multiple line like this...
i want to keep that value in a SQLite database. this is the code i use:
export.setOnClickListener(new OnClickListener() {
...
-2
votes
1answer
28 views
passing refrence or link or path of image to databse [closed]
I know how to store an image to the database by using BLOB datatype but it takes more size so I want to know how can we store a reference or path of an image which is taken by camera and store on SD ...
-2
votes
0answers
21 views
database method which will search record and if found display it like where clause
hi i am beginner want some help
i am getting a spinner selected value from 1 activity to another and then passing to database method which will get as parameter and if that value is found wanna ...
1
vote
2answers
66 views
Android SQLite: Datetime between query
I am using the following code to store my date in my database:
String mydate = java.text.DateFormat.getDateTimeInstance().format(
Calendar.getInstance().getTime());
This is a string ...
0
votes
2answers
108 views
Android SQLite database transaction/locking changes in Jellybean
I have an SQLite database, which receives some heavy use in my app. It is accessed from:
Various activities, to load data into the UI via ASyncTasks (select statements only)
Several background ...
2
votes
1answer
44 views
Android sqlite update issues
Please apologize me if my question is too simple and guide me whats wrong in my update statement.
I have sqlite to store my records in android app. I was able to insert and select successfully. ...
2
votes
2answers
66 views
SQLite: double primary key and autoincrement
I am trying to define a two-row primary key such that
the second column is autoincremented for each individual
value of the first row.
For instance we would have:
X Y
A 1
A 2
A 3
A 4
A 5
B 1
B 2
B 3
...
2
votes
2answers
82 views
SQLite on Android: Different result set at Runtime vs. SQLite Administrator
I am building an Android app with an internal SQLite DB.
Here is the schema:
CREATE TABLE IF NOT EXISTS [tblImageVideoLink] (
[LinkID] INTEGER NOT NULL PRIMARY KEY,
[ImageID] INTEGER UNIQUE NOT ...
0
votes
1answer
29 views
Update all rows in a column to new value
Apologies, I am sure this has been asked plenty of times but I have searched around for a good example and haven't been able to find one.
I'd like to run a method to insert a value into a particular ...
2
votes
2answers
81 views
Android: opening and closing SQLite database
I'm developing and android application in which I often use access the local database. This database can be accessed from differents therads, so I have a coordination problem for the database. I use ...
1
vote
0answers
79 views
Sqlite: cannot open file at line
This error happened occasionally when I did some user/stress test on Android. Files under /data disapppeared and system server crashed after this error occurred. I am curious about the name of ...
0
votes
1answer
46 views
Implementing android music search
I am implementing a music player for android and want to implement the search functionality.
The search should look for albums, artists and titles and i want them to be displayed differently. Also if ...
0
votes
1answer
57 views
How to select one of records on one field SQLite Android randomly
I've SQLite database table like this :
_id || Column1 || Column2 ||
1 || test1 || a,b,c,d,e,f ||
2 || test2 || g,h,i,j,k,l ||
3 || test3 || m,n,o,p,q,r ||
...
3
votes
3answers
158 views
Can't create SQLite database in my android app
I'm using my application object(Android building bloc) to call the database constructor inside my oncreate method.
But i can't figure out why it can't be created.
This is how my code looks like:
my ...
0
votes
1answer
59 views
Cannot perform operation because no current transaction when inserting into database
In my Android application I have to insert data into several SQLite tables from different threads (one thread for insertion into one table and there are 5 tables). There are a lot of data so I use ...
0
votes
1answer
99 views
Deleting data from SQLite using listview by clicking Delete Button
Okay, so my supervisor wants me to do this:
The third screen should be accessible via the "View All" button. It should show all the records that were added. Then beside each name, there should be ...
0
votes
1answer
28 views
Android SQLite External Query Tool
Is there a way to connect to the SQLite database while the emulator is running and do manual queries against the database?
The following is a basic sequence of steps I'm looking to achieve:
Query ...
0
votes
2answers
67 views
How can I simultaneously (from different threads) insert data into different tables in one Android SQLite database?
In my Android application I have SQLite database with 4 tables (laboratories,doctors,income_messages, outcome_messages). Information for this tables is retrieved from the server by using ...
0
votes
1answer
29 views
SQLite ordering that puts prefix matches first
I was wondering how I might formulate a SQLite ORDER that as its first criterion will separate matches depending on whether a search string was matches against a prefix or an infix of a column. The ...
0
votes
0answers
36 views
Inconsistent SQLite timestamps [duplicate]
I'm using two timestamps, last_edited and last_uploaded, to tell if a SQLite entry needs to be uploaded to my server. However, even though I'm using datetime('now') whenever I update these timestamps, ...
-1
votes
3answers
76 views
Android sqlite application will not start and crashes immediately upon opening the app
I am currently working in eclipse with android adt and cannot get my application to open. I have tried cleaning the application and uninstalling it multiple times and I am not sure what else I can do ...
0
votes
0answers
40 views
what to change in database helper to make external database run on real device? [closed]
I have android app with external database in (assets) and i know my DATABASE HELPER class needs some changes to run (external database) on the REAL DEVICE please check this code and let me know what ...
0
votes
1answer
37 views
Creating Two SQLite Tables in Same Class
I have only ever used SQLite with one table. I now need a Database with two tables. Here is how I do it now:
public class MySQLiteHelper extends SQLiteOpenHelper {
public static final String ...
0
votes
1answer
65 views
sqlIte exception:table not found Exception in android
I am new to android.I am trying to read the database and put result into the List activity.following is entry activity.
package com.sanjay.listdemo;
import android.app.ListActivity;
import ...
0
votes
2answers
26 views
Will leaving a Cursor open cause later commands to fail?
I have an app with a SQLite database in it; after opening a Cursor to get some data with a query like:
SELECT * FROM table_name WHERE id=42;
is it necessary to close the cursor before running a ...
0
votes
1answer
67 views
Sqlite: Rename columns and datatype
I am using a SQLite database. Since drop/rename/reorder columns are not supported in SQLite (using alter table commands), I am writing customized methods for the following tasks: (taking backup of ...
-1
votes
1answer
22 views
How to get CountTotal from sqlite Database [duplicate]
I am trying to collect TotalCount from DB but Unable to do so as something is wrong with my query and I am unable to figure it out. Below is my Query:
public int getIds()
{
...
0
votes
1answer
205 views
sqlite timestamp
I created a database using the following sql statement
private static final String DATABASE_CREATE = "create table "+ TABLE_USERLOCATION + "("
+ COLUMN_ID+" integer primary key autoincrement, "
+ ...
0
votes
1answer
22 views
one column value reference from two tables is it support SQLITE
one column value reference from two tables is it support SQLITE
see the below table structure
account_id reference from two tables
FOREIGN KEY(account_id) REFERENCES account(id),
FOREIGN ...
-1
votes
1answer
105 views
How to store and retrieve json data from sqlite DB? [closed]
<[{"word":"boom","text":"To make a deep, resonant sound."},
{"word":"boom","text":"To grow, develop, or progress rapidly; flourish: Business is booming."},
{"word":"boom","text":"To utter or give ...
0
votes
2answers
36 views
Select from db but CursorIndexOutOfBoundsException Index 2 requested, with a size of 2
I have this function that I use to find rows that contains substrings in their name. But I get error, although using log.v I can see the results are returned ok. Can anybody tell me what is wrong ...
0
votes
0answers
23 views
Android Object lifetime using SQLite Object
My MainActivity extends TabActivity. I have two tabs, 'Location' and 'Name'. Both tabs have separate Activitys and layouts. 'Location' is pre-populated and the 'Names' are added by the user. I use the ...




