Tagged Questions
0
votes
0answers
52 views
which is the better management tool of sqlite for creating desktop application? [closed]
I am creating desktop application in JavaFx.
1.I want simple installation ,free version open source and user friendly.This are the need.Mainly it can used with JavaFx.
So please can anyone tell me ...
0
votes
2answers
51 views
Android Sqlite3 - column created by command line but not from my Android code
I am working on a project having an internal Sqlite database. I added a new table (Table1)
with 1 column (column1) via shell and via android inserting and deleting some new values in it. I tried to ...
2
votes
0answers
80 views
Read in java (JDBC) a blob created with sqlite 3 in python
I have a sql table that contains a blob generated
using the following python commands:
sqlite3.Binary(numpy.float64(array))
or sqlite3.Binary(array).
I saved the database and now I would like to
...
1
vote
2answers
115 views
How to write a database to a text file in android
I am working on a Spying application for my college project purpose. For that i have logged the Calls, Location and SMS of the device and stored them in a database. Now i want to export the contents ...
1
vote
3answers
63 views
How to get ranges of groups of data in sqlite table
I'm not sure if this can be done but if it can:
Suppose I have a simple table that has a time field (for simplicity sake we'll just use integers) and a activity field. The data can be sorted on ...
0
votes
1answer
224 views
Android SQLite created database but table can't be found
So I'm trying to fetch data from one of my database tables, could you please check this out for me and see if you can spot the error?
SQLiteDatabase db = SQLiteDatabase.openDatabase(DB_PATH, null,
...
0
votes
1answer
112 views
Column does not exist : Illegal Argument Exception in Android app
In the below activity-The user has to enter the defined fields. Once the entry has been made, user can edit the changes and save.However in my app the entries are successfully getting inserted in to ...
0
votes
1answer
78 views
Convert dictionary to sqlite database
I have dictionary in this format
Traditional Simplified [pin1 yin1] /English equivalent 1/equivalent 2/
^1 ^2 ^3 ^4 ^5
For example
制 制 [A A zhi4] /to ...
1
vote
1answer
104 views
Database android select from table
I have an database that I've putted in my assets folder that and I'm using this DataBaseHelper class.
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import ...
0
votes
1answer
70 views
Cannot read database
i'm trying to read from my database but I get these errors. My db is in the assets folder. I've downloaded the AnyDBAdapter class and just trying to use a simple select function..
02-18 14:18:24.168: ...
0
votes
0answers
301 views
android listview item click context menu
A click on the item in my listview my context menu nothing happens, anyone know what might be. Thank you! Below my code:
public void onListItemClick(ListView l, View v, int position, long id) {
...
0
votes
0answers
81 views
Why is SQLITE Select crashing weblogic? [closed]
I am attempt to run a web application on a weblogic 10.0 server.
The application runs fine until interaction with the SQLITE DB is required.
Whenever a connection to the DB is attempted the stream ...
-5
votes
1answer
428 views
Steps in creating a quiz using database in android eclipse [closed]
im trying to develop a quiz where in my questions and the options are already stored in the sqlite browser.now, my problem is..i do not know the steps/pseudocode in creating the quiz, what would i do ...
1
vote
2answers
65 views
sqlite3 query Android
I'm relatively to SQLite3 so I want to make a query that makes a multi-word search, I've tried using Match Against to make a full text search, as it can be done in MySQL, but it didn't work since ...
1
vote
1answer
131 views
Comparing strings that contain accents in SQLite for Java doesn't work
I'm reading some bowling players' names in a file and then I need to find those names in a SQLite database to calculate their average.
Everything works perfectly, except for names that contain ...
-3
votes
1answer
38 views
how can change a sqlitequeue with two different processes at a time [closed]
I have a problem when i updating a table using sqlite queue from a web application and at at same time another application updates a another table using same sqlite queue that time it gives sqlite ...
0
votes
2answers
677 views
Getting [SQLITE_BUSY] database file is locked with select statements
If I run multiple threads against my web app I get:
java.sql.SQLException: [SQLITE_BUSY] The database file is locked (database is locked)
at org.sqlite.DB.newSQLException(DB.java:383)
at ...
0
votes
2answers
96 views
Load the whole database with Hibernate
I am using SQLite3 and Hibernate with Java. Can I somehow load the whole database in memory or fetch all data from the database so that I can access mapped objects fastest? For example if we have a ...
-1
votes
1answer
96 views
Sql exception from Java - Query works from Sqlite GUI [closed]
When I try to execute this query for Sqlite using Java code, it gives me exception:
Query:
INSERT INTO "tbl_appwidgets" VALUES (85,'2012-03-28 17:29:30','2012-03-28 17:29:30','AEBFB085','RD ...
0
votes
1answer
325 views
SQLite JDBC Classpath
I'm migrating an Eclipse project from Windows to Mac. For some reason, I'm getting a classpath problem specifically on loading the SQLite JDBC driver in MAC. Windows copy is OK.
Exception in ...
1
vote
5answers
85 views
Retrieve count of data from SQLite in Android
I'm having a little trouble when trying to come up with the command to count the number of letter "B" in the level "2".
_id|letter|level
0 A 1
1 A 1
2 B 1
3 A 2
4 B ...
0
votes
1answer
105 views
SQLite crashes when trying to enter a String with a space
I am creating an application that has a default table that stores what the other tables are so that when your trying to put your own input into the app it will store the tables but when you try to add ...
2
votes
2answers
59 views
Securing database and saving all sorts of files
I am trying to save some documents/Images and files in sqlite database. The documents contain different types of pdf,.doc etc files and different format images. Now once I stored it in the blob ...
3
votes
2answers
77 views
Column type NONE in sqlite
I have sqlite database that I using it with Android platform.
I have created the table in run-time. My SQL was:
CREATE TABLE funcs ( id INTEGER PRIMARY KEY AUTOINCREMENT, func_name TEXT, param NONE)
...
0
votes
1answer
93 views
Overwriting SQLite database on a shared network folder
I have an SQLite3 database on a shared folder. I want to overwrite the db file from a Java application. Though there is low read and write traffic on this file, I want to ensure that a) the overwrite ...
0
votes
0answers
59 views
function dies without throwing any error
When the function makeList is called, it is supposed to put all those Log.d's. However, this is what is obtained.
08-28 02:43:10.118: D/string(24791): paging
08-28 02:43:10.118: D/string(24791): ...
0
votes
5answers
106 views
How to hold collection of different type?
I'm writing method wrapping db SELECT statement, that receives SQL query and runs it. Result is collected in Object[][]. Every cell in database may be Integer or String.
I have problem with return ...
0
votes
3answers
503 views
Record cannot be inserted in table with Integer Primary Key field
I have a table in SQLite database with its ID field as integer primary key (hence autoincremented ). I have following query to insert the record in the table.
INSERT INTO users(fname, lname, email, ...
-4
votes
5answers
1k views
Store JSON object response from server in to sqlite database [duplicate]
Possible Duplicate:
Save data from Json object to Database (SQLite)
I am making an android app that gets data from server, save it and use those data later when there is no connectivity. ...
0
votes
0answers
88 views
Getting SQLiteDatabaseCorruptException
The issue is that I'm getting the SqLiteDatabaseCorrupException while executing the next code:
ArrayList<Advertiser> arr = new ArrayList<Advertiser>();
Cursor holo = ...
1
vote
3answers
192 views
insert half a million records using SQLite on Android
I'm making an application that reads a file line by line and inserts the records into a database. The number of records is approximately half a million. The problem is that the whole process takes ...
0
votes
0answers
183 views
SQLException: unable to open database file - Windows 7
I have a problem with permission on Windows 7 with SQLite and Java. Everything works fine when debuging from Eclipse. When I try to run the relase application, I get this error:
...
0
votes
2answers
64 views
error in update table
when i try to update a table the app crashing and return this fatal error:
06-09 08:02:34.026: I/Database(342): sqlite returned: error code = 1, msg = no such column: username
06-09 08:02:34.034: ...
3
votes
3answers
496 views
java.lang.NullPointerException error on a query
i'm ready to develop my second app for android, and I want to use the database. But I'm blocked by an error.
This is the class:
public class MyDatabase {
SQLiteDatabase mDb;
DbHelper ...
2
votes
0answers
102 views
kml multiple pushpins, cursor solution in data base
I am new to programming, (just 2 months)
I am writing an app that logs your latitude and longitude as you drive around and pick weeds. It then creates a kml file so that you (the farmer) can see ...
0
votes
1answer
182 views
Android : How can i interface between .java file and GSOAP
I want to send some data using android app to Gsoap server. I am not able to get proper solution. I have created database file in C++ and need to make interface android app with Gsoap c++ file. I am ...
2
votes
1answer
3k views
SQLite in a multithreaded java application
I have written a java application that sporadically logs events to an SQLite database from multiple threads. I've noticed that I can trigger SQLite's "Database Locked" errors relatively easily by ...
1
vote
4answers
11k views
Most simple code to populate JTable from ResultSet
I googled the whole day and no luck. I call getnPrintAllData() method after pressing OK button. So the code is:
public class DatabaseSQLiteConnection {
Connection conn = null;
...
3
votes
1answer
50 views
Database multitables and ICS
I have a code that creates a database with 2 tables in it.
private static final String tablecommandes="CREATE TABLE Commandes (no INTEGER NOT NULL PRIMARY KEY,equipe TEXT NULL,nom TEXT NULL,adresse ...
3
votes
3answers
343 views
Turkish character in SQLite while using LIKE expression
select *from urunler where musteri like %ir%;
test datas:
+---musteri---+---ID--+
+-------------+-------+
+---İrem------+---1---+
+---Kadir-----+---2---+
+---Demir-----+---3---+
returning ...
0
votes
1answer
177 views
implement java deserialization in pure python with python-javaobj?
i am doing reverse engineering on android app. and need to deserialize a sqllite3 blob data which is serialized in android com.db4o class.
found python-javaobj project on code google site. ...
0
votes
2answers
114 views
Updating SQL throws Exception
I'm trying to update an entire row on my sqlite database on android. But for some reason is throwing an exception.
The method that updates my Database is :
public void updateEvent(long rowId,Evento ...
1
vote
1answer
91 views
Java(ME) SQLlite vicious circle on Datatype Mismatch
I am trying to obtain a float value from my Database
The following checks if its null else returns 1; (works if null in DB but errors if a float)
month = row.getString(39) != null ? ...
0
votes
2answers
305 views
cant create database in android
below code is my databasehandler class i got it from a tutorial. Beside that tutorial i saw this method in so many forums. However, even if i have create table it doesnt seems to be created. What is ...
2
votes
1answer
296 views
how can i decrement an int column of a SQLite table
I have a table in my data base that has three columns: Screen, Icon, and Rank: and i am trying to find the cleanest way to achieve the following..
i want to find all rows WHERE Screen = "myScreen" ...
0
votes
0answers
149 views
Integrated Java Browser for SQLite
I'm currently developing a java app to forensically analyse extracted data from android smartphones.
My main obstacle is finding a suitable java integration for SQLite3, the program doesn't need to ...
0
votes
1answer
345 views
SQLite Database Locking in JUnit Tests
I am running JUnit 4.10 on Eclipse 3.7. I am doing database testing: database used is SQLite3 with sqlitejdbc. I tried running tests on both windows and linux and here are my observations:
On ...
0
votes
4answers
294 views
ResultSet is closed. Why? java+sqlite3
I got small problem I launch my app and after launching a querry and comparing rs == null i got error ResultSet is closed.
Here is the code:
error_code = NO_ERROR;
try
{
ArrayList ...
1
vote
2answers
598 views
TRANSACTION in java + sqlite3
How can I make transaction in java+sqlite3 i check google already.I want to make it to be rollback statement so if somewhere in statement goes wrong all statement go to "space" and the DB got ...
0
votes
2answers
220 views
Proper location to declare SQLite getWritableDatabase()
It says not to call it in the oncreate, but that aside: how can I make it globally accessible? If I have several functions that access the database, how would I efficiently use the single instance of ...


