0
votes
1answer
15 views

Track file download from sql database

I am developing an appstore application for andriod. I want to sort items according to the count they have been downloaded. Android application uses Json for getting the information of the files and ...
0
votes
2answers
57 views

inserting text in database how to take care of '

Hi I am inserting general comments in to my database dynamically. and my query looks like this: String sql = "insert into table (comment) values('"+ dynamic_comment + "');"; I am getting an error ...
1
vote
5answers
102 views

SQL: Sort by priority, but put 0 last

I have a (int) column called "priority". When I select my items I want the highest priority (lowest number) to be first, and the lowest priority (highest number) to be the last. However, the items ...
0
votes
3answers
173 views

Issue executing a query

I have created two tables in the Android SQLite using the following queries: public static final String TABLE_SEMESTER_CREATE = "CREATE TABLE " + SemesterTable.TABLE_NAME + " (" + ...
0
votes
1answer
215 views

Android , SQLite… the primary key is inserted as null

I'm a beginner with android, and trying to create a database. with one table and three functions add , delete, update and retrive. when i insert an item to the data base the primary key will be given ...
0
votes
2answers
105 views

database code crashes on every android API but 4.1

I have some code wich is about copying a filled database into a sqlite database in android. I have tested all my codes with android API version 4.1. But now all other versions crash when I'm trying to ...
1
vote
2answers
568 views

SQLite Order By Date

Every record in my SQLite database contains a field which contains a date stored as a string in the format 'yyyy-MM-dd HH:mm:ss'. Is it possible to query the database to get the record which contains ...
0
votes
4answers
92 views

SQL Query to get all names having (whole or part of) searched name

I'm using sqlite right now and wants to know if any SQL query exists to get all the names having searched name as whole or some part of name. I have saved all names in one column i.e. "name" column ...
0
votes
1answer
182 views

SQLite Query: SQLite Query to delete data, such that only current date data exits in db

I have a database with following columns(screenshot attached) _id = INTEGER PRIMARY KEY guid = TEXT(unique id of the image) pubDate= LONG(time since epoch) imgsrc = BLOB(image ...
1
vote
3answers
434 views

Android SQLite Query - Getting latest 10 records

I have a problem regarding SQL Query. I have a database saved in my android application. I just want to retrieve the last 10 messages inserted into the DB. when I use : Select * from tblmessage DESC ...
1
vote
2answers
102 views

syntax error with FOREIGN KEY in CREATE TABLE

I am getting following output on debugger. I am not sure what syntax is missing. The SQL code is: CREATE TABLE weeks(Week_Id INTEGER PRIMARY KEY, Day TEXT, Start_Time Text, End_Time Text, ...
1
vote
2answers
70 views

SQL don't create a table (or database first?)

in logcat i have this error: 12-05 19:20:26.696: E/SQLiteDatabase(1415): Error inserting lon=5.25 lat=7.52 name=null 12-05 19:20:26.696: E/SQLiteDatabase(1415): ...
0
votes
3answers
70 views

Insert Querey error

I am using following query to Insert into SQLITE database for Android. "INSERT INTO ServerData VALUES('404','192.168.145.101','1','1','1'),('404','192.168.145.101','2','1','1')"); But I am ...
1
vote
1answer
73 views

Please why do I get the error "SQLiteException: no such table: tabella (code1)?

Please why do I get the error "SQLiteException: no such table: tabella (code1)??? from LogCat I get: "SQLiteException: no such table: tabella (code1)" when I try to access the database fro the ...
2
votes
3answers
122 views

sql query to filter dates of this week

I am new to sql queries, can anyone help me for writing query for the following condition I have a column named "dob" in table "members". Note: dob datatype is text. And the values like : dob === ...
1
vote
3answers
53 views

SQLITE fetch statement in Android not working

I have everything working in my DBHelper class except for my fetch statement. I get a red line under query. What am I doing wrong here? public Cursor fetchAllItems() { return ...
0
votes
1answer
115 views

SQLite count ocurrences in row [closed]

Imagine I have a column of a table like this: b - 1 1 1 2 3 and I want to obtain a | b ----- 1 | 3 2 | 1 3 | 1 representing the ocurrencies for that row. I have read that this would do the job: ...
0
votes
3answers
90 views

Select rows in a table which aren't in another one with a nullable foreign key

I have the following database to use it in an Android 3.0 tablet application. I want to select every Defect which it isn't on EReportDefect. As you can see EReportDefect.defectId could be null. ...
0
votes
1answer
48 views

Create a table with one unique field

I want to create a table with 1 text column, and I want it to be unique. Here is what I did: CREATE TABLE Fav { Category_Name TEXT, UNIQUE (Category_Name) } But this SQL won't execute. Why?