0
votes
2answers
26 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
21 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
90 views
Exporting Sqlite data from an Android Application
My Android application stores all user data in a Sqlite database. What are my options to backup/export/import/copy this data? I know I can easily copy the database to the SD card. I would also like …
0
votes
0answers
8 views
sqlite_bind_?(character) how to bind characters in sqlite?
Hi all,
May be its a silly question but I am a bit confused in it, I want to bind a character into sqlite database (neither as varchar, nor as text but as character only)
Hence we can not use
…
0
votes
0answers
39 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
0answers
13 views
sqlite: mirrorred ID-only table, worth it or not
I have a project where I need to load all ids of a table and have random access for different records afterward. This can be effectively done with loading results from SELECT rowid FROM... into an …
1
vote
3answers
33 views
sqlite databases won’t open in anything else than PHP
I recently ported one of my PHP applications from MySQL to SQLite to make it easier to administrate. For some reason, I can access a the sqlite database from PHP and it works perfectly, but if I try …
3
votes
10answers
517 views
Which SQLite administration console do you recommend?
I've been doing some development using sqlite (which BTW it's awesome).
Until now I've used the SQLite Administrator.
Although it has some great features, there are some annoying bugs. So, I ask …
0
votes
0answers
9 views
What happens to Triggers/Indexes when i rename/create/insert/drop a table in SQLite?
What happens to Triggers/Indexes when i rename/drop a table SQLite?
I'm running and upgrade script where i add a column to a table, so i d the following:
ALTER TABLE [Entry] RENAME TO [Entry_temp];
…
0
votes
1answer
11 views
where do I get sqllite.dll to import into vs.net?
I downloaded a version of sqllite, but when trying to add as reference I got an error.
sqllite3.dll cannot be added, please make sure the file is accessible, and that it is a valid assembly or com …
0
votes
3answers
75 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
1answer
45 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
59 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
2answers
214 views
problems inserting tags into a sqlite DB, C#
i have 2 tables
"CREATE TABLE if not exists tag_name( " +
"tagid INTEGER PRIMARY KEY, " +
"title TEXT UNIQUE);";
"CREATE TABLE if not exists media_tags( " +
…
0
votes
1answer
25 views
PHP Sqlite Configuration in Windows Not Working
Hello:
I am having difficulty getting PHP(5) on Windows to work with Sqlite. After some research, I found that I have to change the php.ini file so that it reads (without semi-colons):
…
