1
vote
2answers
60 views

Speed up an sqlite3 database search

I"m new to databases and just wrote my first code using sqlite3. It does the job, but is running extremely slowly and I'm hoping to get some advice regarding how to speed things up. Right now my ...
1
vote
2answers
17 views

droping table vs removing its content sqlite

in my application I have to delete whole contents of a table and refill it many times in that case I have two solutions : 1- drop , recreat and fill the table "DROP TABLE IF EXISTS TABLE_NAME" 2- ...
2
votes
1answer
57 views

How to put a textfile into sqlite simply using Python API?

I have a tab delimited file in the format: sentenceID (sid) documentID (scid) sentenceText (sent) E.g. 100004 100 即便您喜爱流连酒吧,也定然在这轻松安闲的一隅,来一场甜蜜沉醉的约会。 100005 100 您可以慢慢探究菜单上所有的秘密惊喜。 I want ...
0
votes
1answer
36 views

Sqlite3 List index out of range when trying to get LIKE Query

I'm trying to execute the following code: conn = sqlite3.connect("./Databases/Functions/He.db") cursor = conn.cursor() sql = "SELECT * FROM Requests WHERE Request like ?" cursor.execute(sql, ...
0
votes
1answer
48 views

insert multiple rows at a time in an SQLite database: Error with id_column

I'm trying to figure out how do multiple insert in sqlite3 database according this answer Is it possible to insert multiple rows at a time in an SQLite database? It seems to work perfectly, but I ...
0
votes
1answer
21 views

How do I install a replacement database file?

How do I clear out old databases in sqlite3? (version 3.7.12) I am building an iOS (Xcode) app using sqlite3. I deleted the dbase file (in /Users/xx/Library/Application Support/iPhone ...
2
votes
3answers
34 views

Sqlite query with question mark

I have a doubt in the SQLite query..I have a table with four rows and three columns in some sample code of the iOS sqlite database . and I am fetching data from the table with the query :- Select * ...
0
votes
0answers
22 views

Objective c: multiple connection to SQLite3 database

The link here says "Multi-thread" threading mode is safe for as long as not more than one thread makes use of a connection. My question then is, if I have 3 background threads, all writing to the same ...
0
votes
1answer
25 views

sqlite3 foreign key not working at all

cur.execute("CREATE TABLE users(id integer PRIMARY KEY, username TEXT, password TEXT, email TEXT)") cur.execute("CREATE TABLE posts(id integer PRIMARY KEY, body TEXT, user_id int, FOREIGN ...
-2
votes
4answers
94 views

Database in IOS Sqlite3 and db

I am learning some concepts in the IOS database ..I come to know that we use sqlite3 (open source ) to work in the database. but i was going through the some of the github code.. and come to know ...
0
votes
1answer
21 views

Getting latests messages depending on time query

I have a table which has fields i AM Saving messages for each type of user. so idValue is different for all the users. idValue message time_added type I am using following query to get ...
0
votes
1answer
47 views

SQLite Query - Need to get multiple values from multiple keys

I have a database as follows. security_id ticker company_name ---------------------------------------------- 100019 PANL UNIVERSAL DISPLAY CORP 10001 NAFC NASH FINCH CO ...
0
votes
1answer
65 views

Is it possible to execute a rawQuery on the mmssms database?

I am using the emulator in eclipse. I have around 2200 text messages in the emulator I pulled the /data/data/com.android.providers.telephony/databases/mmssms.db from the emulator and saw the text ...
-1
votes
1answer
27 views

pass array of string to gettestdata

I have a sqlite3 database of data in two columns. i performed query by below on data base.It works well for a string word.How can i pass an array of words (words[i]) to gettestdata to perform query on ...
-5
votes
1answer
52 views

perform query on database for array of words

How can I perform a query on database for an array of words. I have a key value pair database for separate words. I have key value pair as two columns in database I can get key-value pair for single ...
0
votes
1answer
19 views

Sqlite, subtracting a date entity from current time

I have a table which have entries like this. SELECT entrydate FROM entities; 2013-04-29 13:24:34 2013-04-29 13:24:46 2013-04-29 13:27:19 What I want to do is that taking difference between current ...
0
votes
1answer
39 views

node-sqlite3 Serialization fails : SQLITE_CONSTRAINT: foreign key constraint failed

In Express.js I am trying to do the following using the serialization of two queries where the second one depends on the first one: I am trying to get an entryID using the first query I use that ...
0
votes
2answers
49 views

SQLIte3 querying a database

I'm trying to write a program to query a database. The database is golfDB and it consists of one table called players with 5 fields: name (player's name) totalGross (sum of the gross scores from ...
0
votes
1answer
43 views

Querying a sqlite3 database

I'm trying to write a program to query a database. The database is golfDB and it consists of one table called players with 5 fields: name (player's name), totalGross (sum of the gross scores from each ...
2
votes
0answers
108 views

What is the use of SQLite connection string “Data Source = :memory:”? [closed]

Inadvertently while I was finding a way for a quick test of my first SQLite user defined function without having to create a SQLite database, I've found this short SQLite connection string which ...
3
votes
3answers
64 views

How to create multiple instance of sqlite database?

I am making an online app in which when I sync my data web then 25 to 30 local database queries in different tables are executed. So it will take around 25 to 30 sec because all database queries are ...
1
vote
1answer
21 views

Translating sqlite3 timestamp format on Windows

Sorry if this sounds like a puzzle, but it does have puzzling me for a while. :) From a sqlite3 db file, one of the record has last_visit_time field of value 13010301178000000 (INTEGER type). How ...
1
vote
1answer
31 views

SQLITE ON UPDATE Actions

Based on the SQLite foreign key documentation, it should be the way of creating two database, and the field that referencing the parent field will get updated too if the parent field get updated. ...
0
votes
0answers
54 views

Django Database Single Cell Overwrite

I am attempting to save a response from a text input to a single cell in a sqlite3 database table without writing over the rest of the information stored in that line of the table. I need to do this ...
0
votes
1answer
11 views

Reference named expression in SQLite expression

I want to do something like this in sqlite3, where "...somelongexpression..." is a placeholder for my actual expression logic: SELECT ...somelongexpression... AS subexpr, subexpr * 2 AS twicesubexpr ...
0
votes
1answer
66 views

Import csv into sqlite with autoincrementing primary key

I am trying to create a table in sqlite that takes data from a csv file and adds an autoincrementing primary key to the first column. Here is the table I am trying to insert data into: DROP TABLE IF ...
0
votes
1answer
41 views

Create trigger for sqlite database that prevents insert

I'm trying to make a trigger for a sqlite database that represents a school. I have a table called Administrators with this schema: CREATE TABLE Administrators( ssn INT CHECK(ssn > 100000000), ...
0
votes
1answer
21 views

sqlite3 database online storage

As you might see from my previous questions i'm making an iOS app at the moment for school, I need to store the db online so I can reach it from a website. I can't use Icloud because i'll have to ...
0
votes
1answer
31 views

python sqlite3 cannot retrieve column values with @ in them like x@y.com

Very simple question here, I couldn't find a real answer out there. c.execute('select * from users where email = ?', ['x@y.com']) c.fetchon() What is so special about @?
0
votes
1answer
72 views

Lua - SQLite3 isn't inserting rows into its database

I'm trying to build an expense app for Android phones, and I need a way to display the expenses. The plan (for my current step) is to allow the user to view their expenses. I want to show a ...
0
votes
0answers
23 views

sqlite dump only producing three lines

After attaching .sqlite file as db1 through sqlite3 and viewing the table contents, I try a .dump db1 and also a .dump [tablenamehere] and .dump db1.[tablenamehere].. I am only getting the following ...
0
votes
1answer
62 views

How to load SQLite3 database with log file entries using perl

I have an assignment In my Perl class that contains two programs, the first is to create a database and table using the DBI::SQLite for Perl, i have already completed the first part of the program, ...
-3
votes
2answers
63 views

Creating Table in database from Perl using SQLite3

I'm having trouble creating a table in a database I created with Perl using dbi sqlite3. Using the code I have below, I want the table to contain port-probes, one line for each source ip and port. I ...
0
votes
1answer
36 views

could one ruby on rails application use two sqlite3 database?

in my config/database.yml file # SQLite version 3.x # gem install sqlite3 # # Ensure the SQLite 3 gem is defined in your Gemfile # gem 'sqlite3' development: adapter: sqlite3 database: ...
1
vote
2answers
149 views

SQLite insert speed slows as number of records increases due to an index

Original question Background It is well-known that SQLite needs to be fine tuned to achieve insert speeds on the order of 50k inserts/s. There are many questions here regarding slow insert speeds ...
0
votes
1answer
151 views

What quick CRUD interface generator for sqlite database (without coding too much)? [closed]

Do you know a nice libre/free tool to generate (or create) a user interface for a simple sqlite database (roughly < 10 tables, < 200 rows per table) without having to code too much? I have a ...
1
vote
2answers
30 views

Is there a way to query how much data a particular table or column is storing in sqlite?

I have a 50mb sqlite database. I would like to run a query or report to indicate which tables / columns / rows are storing how much data. My purpose is to optimize how I am storing data to reduce ...
-2
votes
3answers
68 views

Why like operator dont work - Sqlite

Hi all i have this query that would return search from base with operation Like '%srch' srch=search.getText().toString(); ... db.rawQuery("SELECT * FROM MyTable WHERE Name LIKE 'srch%' or Name LIKE ...
0
votes
1answer
30 views

sqlite3.Connection class inheritance, commit not working

This is my first time using sqlite3 through class inheritance, and I've run into a problem where I get no traceback errors, but the queries I execute won't commit. I simplified my code import ...
1
vote
1answer
111 views

getting “SQLite3::CorruptException: database disk image is malformed” from rails console

I'm doing Michael Hartl's rails screencast tutorial, and in chapter 7, I'm trying to add a user to the database for reasons of testing the user show page. When I create a user, it gets rolled back ...
0
votes
1answer
33 views

Converting in-memory sqlite database to char array

I have an in-memory sqlite database which I want to convert to a char array, to write it on a flash memory. I have googled and I found this solution: Loading and Saving In-Memory Databases. As I am ...
0
votes
1answer
30 views

sqlite3 query keeps failing to insert

I am trying to take the variable generated from cpu usage, but for some reason and no matter what I try the terminal returns a syntax error after getCpuLoad)) and also the sqlite3 query doesn't effect ...
0
votes
2answers
22 views

Structuring a Database That Counts Similar Entries

I'm new to databases. I'm organizing music using mysqlite3. I have ArtistName, SongTitle, and AlbumTitle fields in the Music table. The primary purpose of the database is to query it and return all of ...
1
vote
1answer
223 views

SQLite UPSERT / UPDATE OR INSERT

I need to perform UPSERT / INSERT OR UPDATE against a SQLite Database. There is the command INSERT OR REPLACE which in many cases can be useful. But if you want to keep your id's with autoincrement ...
0
votes
1answer
63 views

Sqlite Database multi threaded SELECT and UPDATE operation confusion

I am creating a mufti threaded application that uses a Sqlite database to store information. One of the thread performs a SELECT operation where it selects rows where a particular column is blank as ...
0
votes
0answers
93 views

“QSQLITE driver not loaded” Qsqldatabase error

I am facing an issue with QSqlDatabase. I get an error saying, "QSqlite driver not loaded". To analyze it we have implemented a sample test code. #include <iostream> #include <QtSql> ...
0
votes
0answers
34 views

Method to model a hash of arrays in sqlite database

I have a hash of arrays in a script I wrote where each hash key is a URL and the array is full of URLs. In English I am modeling a set of pages with many links on them. I don't know if each page ...
0
votes
2answers
143 views

How do you parse FASTA file and submit sequence to SQLite db file in Perl using DBI?

I have a FASTA file as follows >header1 AAAAA AAA >header2 BBBBB I've been able to create a SQLite table via perl using DBI. #!/usr/bin/perl use strict; use warnings; use DBI; my $dbh = ...
0
votes
1answer
34 views

SQLite3 Database for GPS information

We're developing an application which runs on mobile toughbook laptops. The laptops have built-in GPS. I want to use SQLITE to store GPS information (along with other sensor information). Currently I ...
0
votes
1answer
101 views

Getting the number of affected rows in FMDB updation query

I am updating my table with FMDB. How can i get total number of rows that updated. (Actually i have an issue. My update query is returning "true", even i have no data in that table.) Thanks in ...

1 2 3 4 5 10