0
votes
2answers
23 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
26 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 …
0
votes
1answer
27 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
2answers
23 views
SQLite equivalent of SQL Server DateAdd function
I need help reproducing the following SQL statement to a statement that SQLite understands.
SELECT * FROM SomeTable WHERE [Date] >= DATEADD(day, -14, GETDATE())
Any help is much appreciated!
0
votes
1answer
14 views
SQLite ADO .NET - how to correctly use query builder?
Hello.
The following code works perfectly:
var oDb = new SQLiteConnection();
oDb.ConnectionString = String.Format(
"Data Source={0};"
+ "Synchronous=Full;",
"test.db" );
…
0
votes
3answers
81 views
SELECT * in SQLite doesn’t return everything in the table
I'm using PHP to fetch data from a database.
Here is the code:
<?php
$db = new SQLiteDatabase("testDB.db");
$query = $db->query("SELECT * FROM blog ORDER BY blogdate DESC");
…
0
votes
2answers
26 views
SQLLite not inserting into
I have the following code block
SQLiteConnection cnn = new SQLiteConnection("Data Source=" + getDBPath());
cnn.Open();
SQLiteCommand mycommand = new SQLiteCommand(cnn);
string values = "'" + …
0
votes
2answers
70 views
Pivoting SQLite table, setwise like SQL should be
I have some data. 224,000 rows of it, in a SQLite database. I want to extract time series information from it to feed a data visualisation tool. Essentially, each row in the db is an event that has …
0
votes
2answers
25 views
Entity Framework: Inserting new entity associated with another entity
I have two tables FilesystemEntries and CacheEntries where there is an association of 0..1 CacheEntry per FilesystemEntry (that is a FilesystemEntry can have a null CacheEntry, but not vice-versa). …
0
votes
2answers
25 views
Fixed Timetable DB Design
I want to let my users specify which hours / days they want to be contacted, I though of creating a fixed timetable with the 7 days of the week and let the user specify which hours he has free.
I'm …
0
votes
2answers
62 views
Read datetime back from sqlite as a datetime in Python
I'm using the sqlite3 module in Python 2.6.4 to store a datetime in a SQLite database. Inserting it is very easy, because sqlite automatically converts the date to a string. The problem is, when …
0
votes
3answers
79 views
Python 3: Best string compression method to minimize the size of a sqlite3 db
I recently created a script that parses several web proxy logs into a tidy sqlite3 db file that is working great for me... with one snag. the file size. I have been pressed to use this format (a …
0
votes
2answers
27 views
How can I access the last inserted row ID within a SQL script?
I'm using SQLite, and I have a table for properties, and a table for sub-properties. Each sub-property points to its parent using the fkPropertyId column. Right now, to create the initial database, …
0
votes
2answers
70 views
Can anyone please help me with this SQL Query (works in SQLite DB Browser, but not in Rails)
Rails has been spitting this out to me:
SQLite3::SQLException: near "SELECT": syntax error:
SELECT questions.id, questions.text, questions.question_type_id, questions.meta, …
0
votes
1answer
45 views
SubSonic 3 Repository - SQLite In-Memory
Before I invest the time in modifying the SubSonic 3 source, I figured I ask to see if I'm missing something simple.
Is it possible to use the SubSonic 3 Repository with migrations on a SQLite …
