0
votes
1answer
13 views
Is it possible to implement the Haversine formula in Objective-C and call it from SQLite?
As I understand, SQLite doesn't have the math functions to properly implement the Haversine formula in straight SQL. I'm thinking this should be possible using an external functio …
0
votes
2answers
42 views
Cannot load an SQLite JDBC Driver, Any Ideas ?
So i need to write a program that accesses and modifies an SQLite DB for a school program and am looking at the basics firstly. Now, I am looking at this to get me started: link te …
0
votes
0answers
16 views
sql lite replicating the records by using triggers based on current date
Hi,
Im using sqllite in my palm-pre web os application,
i have the table with the following structure.
Spending(id,note,amount,date,recurringtype,type,isprocessed);
the value fo …
0
votes
0answers
42 views
Database Design for Betting Community
I'm creating a online community for a soccer betting game available in my country. I've a pretty good idea how the whole system should work but I'm having some trouble figuring out …
1
vote
2answers
41 views
How to query the filesystem (NTFS) with SQLite?
Hi everybody.
How can I query the filesystem (NTFS) with SQLite?
0
votes
5answers
73 views
JOIN after processing SELECT
Given the following schema:
CREATE TABLE players (
id BIGINT PRIMARY KEY,
name TEXT UNIQUE
);
CREATE TABLE trials (
timestamp TIMESTAMP PRIMARY KEY,
player BIGINT,
scor …
0
votes
3answers
110 views
How to use SQLite in a multi-threaded application?
I'm developing an application with SQLite as the database, and am having a little trouble understanding how to go about using it in multiple threads (none of the other Stack Overfl …
0
votes
0answers
32 views
Cashier/Stock Control/Product Management Free Software [closed]
Hi all do any of you have done, or know of a cashier software made in C/C++(preferably C because I suck at C++) using SQLite and linux. It needs to operate in a shell environment.
…
0
votes
2answers
31 views
PHP/SQLite with multiple SQL statements: $db->Query() works, $this->db_sqlite->query() fails
I am creating a class that handles various SQLite actions. My problem is: When I make a SQL string with multiple statements then it works when using standard PHP => $db->query() .. …
0
votes
3answers
51 views
SQLite , Derby vs file system
Hi All,
I'm working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database …
0
votes
4answers
55 views
How do i do an SELECT in an INSERT?
I want to do something like this
INSERT INTO link_list(link, status, hash_type, hash_id)
VALUES(@link, @status, @hash_type, @hash_id);
INSERT INTO active_dl(fileId, orderNo)
VALUE …
0
votes
3answers
42 views
Using SQLite How do i index columns in a CREATE TABLE statement?
How do i index a column in my CREATE TABLE statement? The table looks like
command.CommandText =
"CREATE TABLE if not exists file_hash_list( " +
"id INTEGER PRIMARY KEY, " + …
0
votes
2answers
29 views
Strange result with
When i run this as my first commend i get an exception an error near "last_insert_rowid". This is referring to the last last_insert_rowid();. If i set the curser to the line comman …
1
vote
4answers
57 views
Creating database tables with “either or” type fields.
I have a database that tracks players through their attempts at a game. To accomplish this, I keep a table of users and store the attempts in a separate table. The schema for the …
1
vote
3answers
76 views
Transfer MySQL to SQLite
I want to start using Core Date on iPhone with pre-existing MySQL databases. What's the easiest way to transfer a MySQL database to SQLite?
I've tried using SQLite Migrator, but I …
