SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
7
votes
2answers
121 views
+50
Intent.ACTION_PICK returns empty cursor for some contacts
I have an app in which one aspect is for a user to select a contact and send a text to that contact thru the app. The app only works with some contacts and fails on others. More precisely:
for the ...
1
vote
0answers
47 views
+50
effectively unlocking an SQLite database
I have a program which frequently crashes (Zotero), leaving its SQLite database locked and inaccessible for use by the restarted program unless I reboot (which I really want to avoid). So this does ...
2
votes
1answer
89 views
+50
Restarts c# windows service on a url call
I have a c# application which runs as a windows service. This application uses open source tiny http server for URL communications. There is a flext application developed to update and select the data ...
0
votes
1answer
77 views
+50
E/SQLiteLog(1893): (14) cannot open file at line 30176 of [00bb9c9ce4]
I am using this tutorial to import a database into my App.
It runs fine on API 10,
but on API 17 it throws the following error:
05-19 14:52:46.492: E/SQLiteLog(1893): (14) cannot open file at line ...
0
votes
1answer
21 views
+50
How to solve a bottleneck on sqlite3?
i'm working on a project written in C that generates almost 350k sequences to be persisted on a sqlite database.
For each sequence i have to insert (or ignore) a string in a table and update a row in ...
0
votes
2answers
63 views
+50
Stored Images in SqLite is taking 2x more space
I want to store jpg images in a SqLite database and I am using this code at the moment:
public byte[] ImageToByte(Image image, System.Drawing.Imaging.ImageFormat format)
{
using ...
0
votes
0answers
31 views
+200
Dropping SQLite index with fmbd on iOS fails with SQLITE_LOCKED
I'm having some trouble dropping an index I've created in SQLite in an iOS application. I'm using fmdb.
When attempting to drop an index, sqlite3_step always returns SQLITE_LOCKED. As a result, fmdb ...
