0
votes
5answers
62 views
How does SQLite work? It is in-memory database, or is it a physical disk database?
On a scale of 1-10, how simple is it to use vs mysql?
0
votes
0answers
29 views
How Fast would a SQLite join be compared to a custom tree search?
Continuing some themes in this question, I would like to know if I could get a performance of O(log n) on the size of the table from somes sqlite queries.
The first would get the mth element of a …
0
votes
0answers
2 views
Convert from tailf XML DB to SQLite DB
I have a project which is composed of a board with 2 CPUs that have access to 2 different memories (FLASH and DDR), and the 2 CPUs can communicate by ethernet among themselves.
one CPU is running XML …
1
vote
2answers
25 views
Sqlite API boolean access
This should be an easy question I figure, but I hadn't found this answered else where surprisingly, so I'm posting it here.
I've inherited a Sqlite driven database which contains boolean columns in …
0
votes
4answers
58 views
sqlite Indexing Performance Advice
I have an sqlite database in my iPhone app that I access via the Core Data framework. I'm using NSPredicates to query the database.
I am building a search function that needs to search six different …
0
votes
2answers
20 views
SQLIte help need
What is an alternative in SQLite as STR_TO_DATE() funciton in MySQL?
0
votes
1answer
16 views
Retrieving and Presenting SQL Joined Table Records with PHP, Sqlite (or MySql), and HTML
Hello:
Please bare with me while I try to explain my question. I have a Sqlite database that has a table consisting of company information (Companies) and a table consisting of product information …
0
votes
4answers
69 views
How to pass a value from Cocoa to an SQLite query
Hi,
first of all please let me say that I am quite new to objective c development. I am writing a small app for personal use for the iphone, but I have some problems executing the following code:
…
0
votes
4answers
44 views
iphone sqlite NSDate bug
Hi, i use core data in my iphone app, but in some case i use sqlite to access to data and ia have a problem with NSDate.
NSDate *now = [NSDate date];
NSCalendar *calender = [NSCalendar …
2
votes
4answers
74 views
Simple multi-user database solution
I've written a Windows desktop application that works with Sqlite very nicely. It was a single user app, and the database sits right on the machine where the app runs.
However, the application has …
1
vote
2answers
54 views
Dependable insert with SQLite
I'm writing a program in C# that needs to insert data in multiple tables. The first insert returns a last insert rowid, which is in turn used to perform an insert on the other tables. In pseudo code:
…
0
votes
1answer
16 views
SQLite ADO .NET: how to specify a default value for GUID?
Hello.
As i previously discovered, SQLieParameter (parametrized query) can't be used for "create table" in SQLite ADO .NET. I need to create a table with GUID field and i want a default value to be …
0
votes
3answers
52 views
can we property/synthesize to a sqlite3 *database object ?
Hi,
I have code snippet,
which is like this...
#import <sqlite3.h>
@interface DatabaseClass : NSObject {
sqlite3 *database;
}
@property ( nonatomic, retain ) …
0
votes
1answer
33 views
Using SQLite from Objective-C
I am having problems writing statements, especially when updating.
I want to update a column with a parameter, but I don't know the special characters to use like @ or %d.
I tried to do:
const …
0
votes
1answer
29 views
Sql Query Solution
I have a query as follows.
select strftime('%Y-%m',A.traDate) as Month,sum(A.TraAmt) as Total,C.GroupType from
TransactionTbl A left join TransactionCategory B on A.CategoryID = B.CategoryID left …
