Tagged Questions
0
votes
1answer
39 views
delete and update cascading doesn't affect on child table in SQLite?
I've known of using 'PRAGMA foreign_keys = ON' or including an attribute in my SQLite connection string like this:
con = "Data source = myData.sdb; foreign keys = true";
I've also made a demo to ...
0
votes
2answers
44 views
SQLite delete one single row
I have a SQLite table defined this way:
CREATE TABLE Points(value INTEGER, player INTEGER, match INTEGER)
In the execution, I may have several identical columns, and I want a call which only ...
0
votes
0answers
88 views
execSQL Delete / rawQuery Insert Where clause
So I have a problem (maybe I'm the problem in fact).
I have this code but I got no error and catch no exception, I don't understand why it don't work.
For the DELETE, the query just don't work without ...
0
votes
1answer
80 views
Android SQLite Delete Row From Table Where 2 Arguments
This is my database :
// the names for database columns
public final static String TABLE_NAME = "vremena";
public final static String TABLE_COLUMN_ID = "_id";
public final static String ...
1
vote
1answer
127 views
Transfer data from SQLite to SQL Server 2008 at the time of INSERT, UPDATE and DELETE in SQLite
I have both SQLite and SQL Server 2008 r2 to store info..
Both of them have Same DB Tables..
For Eg :
In SQLite I have table like below
PlayerInfo :
PlayerName SteamID Score
Pandian ...
0
votes
3answers
42 views
Using a cursor to return rows from SQLite, error when database is empty
When my database is empty, or it has just been created I am getting this error,
03-10 17:34:40.758: E/AndroidRuntime(1144):
java.lang.RuntimeException: Unable to start activity
...
0
votes
1answer
62 views
When deleting data from SQLite database, app requires restart before deletion actually occurs
currently I am trying to create a phonebook app that, when the delete button is clicked will delete the entry in the SQLite database that is shown on screen. However, when I click the delete button ...
0
votes
2answers
100 views
Deleting items on listview together with the database [ANDROID]
I have have checked every problem here in relation to my own. The codes are totally different in the one i'm using IMHO. I have coded everything up to this point. I've read that in deleting the data ...
0
votes
1answer
129 views
Android SQLite deleting a specific row from database
i am trying to do a simple login page where i am able to delete a specific contact with its details just by entering the username.
in other words, i would like to delete a specific row in my ...
-1
votes
1answer
49 views
Deleting .sqlite file from project folder
I'm creating an application, that needs an SQLite Database for storing settings that the user made, so it will be rememberd next time the application gets started.
I know that there are ways to ...
0
votes
0answers
43 views
SQLite - Does deleting rows speed up the database performance?
My database had 100k rows and I have deleted 50k rows. The size of the database remains the same after the deletion. My question is, does deleting the rows speed up future query execution despite its ...
0
votes
1answer
79 views
Sqlite - Delete row from table where match exists in second table
I have Table A with the following values:
+------+------+
| ID1 | ID2 |
+------+------+
| 1689 | 1709 |
| 1709 | 1689 |
| 1782 | 1709 |
| 1911 | 1247 |
| 1247 | 1468 |
| 1641 | 1468 |
| 1316 | ...
1
vote
2answers
74 views
How to DELETE a row with a GUID Value in SQLite
I have a column in SQLite of GUID type, I have tried a query like this, and it returns no error, but the row is not deleted
DELETE FROM MyTable WHERE Id='4ffbd580-b17d-4731-b162-ede8d698e026';
In ...
-1
votes
2answers
67 views
android - cannot delete a record in the database
I have a function that should delete a record in my sqlite database. But it is not deleting, what could be wrong?
public boolean deleteLoc(String id) {
boolean deleteSuccessful = false;
try ...
1
vote
2answers
732 views
Deleting rows with certain relations
I have some tables :
/* Delete the tables if they already exist */
drop table if exists Movie;
drop table if exists Reviewer;
drop table if exists Rating;
/* Create the schema for our tables */
...
1
vote
1answer
810 views
ANDROID: Delete multiple selected items in ListView
I have a list view that displays records from a database. Each row in the listview has a checkbox. How do I...
Create a toast message displaying the value of the selected item?
Identify the records ...
0
votes
3answers
274 views
How to delete rows in SQLite with multiple where args?
I want to delete rows which satisfy any of multiple conditions.
For example, I pass a list of IDs, and I want to delete all rows with these IDs (IDs are unique).
This would be:
String[] ids = {"0", ...
0
votes
2answers
187 views
android sqlite delete row not working
I am having an odd problem deleting rows from a sqlite database. The first time I try deleting a row, it seems to work fine. However, anytime thereafter, I get no errors, it simply does not remove the ...
0
votes
2answers
82 views
Delete a specific row from table with a list view
I've a table 'itemsDataTable' and when I delete a row with:
public void deleteExpense(long idToDelete){ // Delete Expense
Log.d(TAG, "Expense deleted with id: " + idToDelete);
...
0
votes
1answer
242 views
Using Listview and Sqlite
I have downloaded an example of SQLite from the following link
http://www.codegod.com/Android-ListView-with-dynamic-Images-AID590.aspx
SQLiteListActivity.java:
package com.codegod.android;
import ...
-1
votes
1answer
90 views
How to get Saved data from database?
I want to implement click on item and go to layout where we have enter data and saved into the database. Also please do let me know the data base update method how can I update data and again save ...
1
vote
4answers
183 views
Delete an Item on Listview but this doesnt deleted from SQLite
I use this method to delete an Item on my SQLite database:
public void deleteItem(String item){
SQLiteDatabase db = this.getWritableDatabase();
db.beginTransaction();
...
0
votes
1answer
118 views
delete row in sqlite database
I have a sqlite database which store different multiple user's data. I wanted to ask how to delete specific row in the database? I'm not really familiar with database type of stuff. Currently I have a ...
2
votes
1answer
38 views
Posts won't be deleted from database
In my application I'm using SQLite3, and right now I'm trying to get DELETE to work. The code below seems fine for me, and I've checked that $producerId holds the Id, which of course exists in the ...
0
votes
4answers
307 views
SQLite android: Simple DELETE statement did not work [duplicate]
Possible Duplicate:
Android Delete Query
I've db and right now it has 17 records .
This is my code :
SQLiteDatabase db=openOrCreateDatabase("mydb", MODE_PRIVATE, null);
c= ...
-1
votes
3answers
84 views
Delete in sqlite certain rows with specific data that are relatively old in a table using java android
I want to delete for example the first 3 (oldest) that have the color1 as blue.
Example data set:
_id | name | surname | color1 | color2
1 | mark | jacobs | blue | green
...
0
votes
2answers
96 views
how to delete first “n” rows using content provider
I want to delete first "n" rows using content provider.
This is my code:
private void deleteOldItems(int number) {
String where = HistoryTable.COLUMN_ID + "<=?";
getContentResolver()
...
1
vote
2answers
110 views
Reset sqlite db to default values
I am writing a reset function within my app which will restore my sqlite database to its original state with some pre-populated data. The code below removes the database from the documents directory ...
0
votes
1answer
164 views
Deleting Row with multiple WHERE in SQLite Android
Is this the correct way to delete rows with Multiple WHERE arguments? I am trying to make it as safe as I can to the database query.
db.delete(TABLE, NAME + "=? and " + ID + "=? and " + ARG3 + "=?", ...
0
votes
2answers
66 views
How can I use “AND” and “OR” in SQLiteDatabase.delete(…) method?
I am using the following code for deleting some rows from my table in Android:
sqliteDb.delete("MYTABLE", "Tel" + " = ?", new String[] { "1" });
How can I call this method for the following 3 Query ...
0
votes
2answers
2k views
Delete SQLite Row with where clause with multiple clauses
I've been searching around and not managed to find a solution or working example so here goes.
I've set up an SQLite database which has five columns with different fields which effectively builds a ...
0
votes
3answers
227 views
SQLite delete syntax error
This line, mDatabase.execSQL(sql);, gives me the following error:
{ sqlite returned: error code = 1, msg = near "*": syntax error }
for Delete * from table_name Query
My SQL query is : DELETE * ...
0
votes
1answer
1k views
Android: Have ListView selected checkbox delete from database
I'm using a custom list adapter for my ListView. How can I get the database rowid/_id from the checked checkbox so that I can multiple delete the data from my database?
Here's my activity:
import ...
1
vote
1answer
294 views
Android delete row with cursor
I am creating a program in Android, on one of the screens I plan to iterate thought the rows in a database, presenting each row to the user and letting him skip it or delete it.
In Java I could user ...
1
vote
1answer
334 views
How to delete chosen row on context menu?
I want to delete a sqllite db record when I chose delete menu item from context menu.
I created context menu. And it is working. But I cant delete db row. Is there any way to delete record. What shall ...
0
votes
1answer
111 views
Sqlite delete data from columns
I have a table with 4 columns like this:
Date Col1 Col2 Col3
27/03/2012 data data data
28/03/2012 data data data
I want to delete data ...
0
votes
1answer
248 views
Delete column from Sqlite database
Basically i have to enter all textfield values in database then have to use for sending to webservice. so when the one column details send to service then have to delete that column
I have done this,
...
0
votes
0answers
219 views
Xcode SQLite - how to empty and reset a database?
can someone spoonfeed me the syntax to empty (and reset the auto incrementors) a database in SQLite on iOS 5.
TRUNCATE doesn't appear to be available and can't work out if "DELETE FROM database" ...
0
votes
2answers
103 views
sqliteDatabase.delete implementation
How do I "translate" the following SQL statment for using sqliteDatabase.delete(...) -
DELETE FROM EVENTS_TB WHERE event_time < some_time
Where event_time and some_time are long and some_time ...
0
votes
5answers
178 views
show immediate changes when data deleted from databas
View Database XML file:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
...
1
vote
3answers
588 views
SQL: delete all rows except latest per user, having a certain column value
I've got a table events that contains events for users, for example:
PK | user | event_type | timestamp
--------------------------------
1 | ab | DTV | 1
2 | ab | DTV | 2
3 | ab ...
0
votes
1answer
104 views
SQLite: Deleting an entry and releasing from unique key index
For a project with offline storage, I created a database with a primary key for the id and also a unique field holding the date.
When I delete an entry, I can not create a new one with the same date ...
2
votes
1answer
381 views
On delete cascade android 2.2
I have 2 tables:
Table 1- create table table1(_id integer primary key, content text not null );
Table 2- create table table2(_id integer primary key, id_parent integer, content text not null , ...
0
votes
1answer
960 views
android, delete multiple rows in sqlite
I need to delete multiple rows from my database table.
This is my code for deletion
String[] paragraph;
.....
//here you can to put various strings within it (1 or more)
...
0
votes
1answer
97 views
SQLite Delete from New Table data that exists in old table
I get daily update files of progress on a project that have no date field. I have added a date column to the first Table and imported the 1st and 2nd tables into SQLIte. Now I want to delete from the ...
3
votes
3answers
2k views
Delete selected row in listview in android
I have a listview with custom row having a textview and a clickable image for deleting the row. Listview gets the data from sqlite database. I have successfully loaded the data from the database into ...
0
votes
2answers
433 views
SQLite changes() pragma reports 0 rows changed in certain delete statements
So I've recently found the CHANGES() pragma available inside of SQLite. I'm doing something like the following inside of my Android code:
db.execSQL(sqlStatement, argumentArray);
int result;
...
1
vote
3answers
916 views
Delete all but latest 500 rows from sqlite database
My SQL isn't bad but SQLite on iOS constantly catches me out.
I have a table where I want to limit the number of rows to around 500, so when it hits a trigger point of say 550 it will delete the ...
0
votes
2answers
936 views
How to delete record using SQLiteDatabase?
I need to delete the record from Sqlite, My table name is "TABLE_NAME" and column name
is "COLUMN1", I pass the string value from MyTable.java to mySqliteHelper.java.
I need to delete this record ...
0
votes
2answers
2k views
How delete item from listview and database by clicking on it? [duplicate]
Possible Duplicate:
how to delete item from listView?
I fetch data from Database in listview and it display properly but i need to delete
item from listview and database by clicking on it ...


