1
vote
1answer
14 views
What IPC method should I use between Firefox extension and C# code running on the same machine?
I have a question about how to structure communication between a (new) Firefox extension and existing C# code.
The firefox extension will use configuration data and will produce …
0
votes
2answers
37 views
Versioning SQLite databases with Subversion. Good idea or bad idea?
So I have a web system where every user gets a separate SQLite database which acts as a sort of their workspace. All of the database files are in a directory with database names th …
0
votes
1answer
26 views
Should I use SQLite for automatically build a list of banned IPs of comment spammers?
I am using a simple yet effective anti-spam system at a comments module which seems to be working flawlessly for more than a year now.
Since it is capable of recognizing automated …
0
votes
2answers
23 views
Passing generated id from table 1 (primary key) to table 2 (foreign key)??
Hi
I am using (evaluating :)) Subsonic ActiveRecord mode for accessing sqLite. Need transaction to work. Regular stuff... Of ocurse!
Following snippet explains the desired logic. …
0
votes
1answer
24 views
Java Exception Error - Sqlite preparedStatement.setBlob
I'm placing and image into a databse, it could be eitehr an MYSQL database (the Server) or an SQLITE database (a Tablet PC for on the road). The Java application synchs with the se …
0
votes
1answer
24 views
Variables in SqlLite
I was wondering if there is a known technique for saving and using variables in an SqlLite database.
I am looking for something like the $something variables one can find under Or …
0
votes
1answer
12 views
Equivalent of SqLite Blob type in Subsonic?
Hi
In one SqLite table, I have a BLOB column for saving images (or binary data as a matter of fact). The table is Documents.
Strangely, in Subsonic's ActiveRecord's Documents clas …
4
votes
7answers
141 views
How much can SQLite store on the iPhone?
I have an idea for a webapp for the iPhone but its unknown to me how much data can be stored in mobile Safari's SQLite db. I tried searching through the Apple docs but found nothin …
0
votes
2answers
35 views
Android: SQLite and ListViews
Firstly, I have found many examples of how to grab data from a db and place it into a list, however this seems to be all for ListActivites.
My list is part of the UI and therefore …
1
vote
2answers
18 views
Gears and Mysql sync
Hi,
I am making an offline website that needs to sync every night with a server. Our employees work outside and sometimes underground and need to access the site for its database. …
1
vote
2answers
40 views
Convenient way to use LIKE case sensivity in sqlite
As I see LIKE operator can optimize query if I switch PRAGMA case_sensitive_like=ON. I measured, it really worked, queries "LIKE someth%" becomes ten times faster on a compartively …
0
votes
1answer
12 views
Ruby “No Such File To Load - sqlite3” on OS X
I was trying to create a quick little script that would insert data into an SQLite db for me but I can't get past the first few steps.
I have done "sudo gem install sqlite3-ruby", …
0
votes
3answers
50 views
SQLite - SELECT over multiple entries of the same data/column
I am a bit new to SQLite, and I am having a slight dilemma about my database design. I'll explain. Suppose you and your friends use a number of different nicknames on the Internet …
1
vote
3answers
52 views
What is the best way to write a validation layer for SQLite
I'm using an ADO.net provider of SQLite. I want to steer around some of the "features" of SQLite, like allowing a string in an integer field and allowing a string longer than n in …
1
vote
3answers
30 views
Is it safe to include extra columns in the SELECT list of a SQLite GROUP BY query?
I have a simple SQLite table called "message":
sequence INTEGER PRIMARY KEY
type TEXT
content TEXT
I want to get the content of the last message of each type (as determined by i …
