SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.
1
vote
1answer
113 views
SQLite Exception raised with message: no such table
I created an application that collects information from the computer (computer name, CPU, Memory, etc) but I am having such a hard time displaying the information stored in the SQLite database, when I ...
0
votes
1answer
20 views
iOS6 Pass Row Number from Cell to next View Controller
I have a basic table view cell that is all SQLite3 database generated.
When I click on the Disclosure Indicator in a cell to move to a View Controller so I can edit the contents of the previous cell, ...
0
votes
0answers
25 views
Is it possible to use date functions when creating an SQLite view?
Say that I have a table with the following schema:
create table events
(
_id integer primary key autoincrement,
title text not null,
date text not null
);
And I want to create a view ...
0
votes
0answers
24 views
ipdb, multiple threads and autoreloading programs
I am using ipdb debugger to debug multithreaded web applications locally (Django, Plone). Often ipdb seems to get confused because of the autoreload which happens when I am on the debug prompt. The ...
-2
votes
3answers
66 views
SELECT Query Best practice
I know that SELECT * is considered bad practice since it can return un-needed information.
But what about this:
Say i have a table with 4 columns, columns 1-4
Is there any difference (like fast, ...
0
votes
1answer
28 views
Open source SQLite database encryption supported by Entity Framework?
I am developing an application that is using SQLite for the database. I am using Devart dotconnect (http://www.devart.com/dotconnect/sqlite/) for SQLite along with entity framework in .NET 4.5 to ...
1
vote
2answers
19 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- ...
0
votes
0answers
32 views
GLM matrix 4X4 (mat4) to array and back
I need to put a glm math library mat4 into a sqlite3 BLOB and back. What would be the most efficient approach? Serialize mat4 to bytes?, Turn mat4 to a float array? BLOB will not take a mat4 directly
...
0
votes
1answer
47 views
Convert Rails Sqlite3 db to Oracle or Db2 or MS SQL Server [closed]
i have a rails application with sqlite3 as default database. I want to switch my sqlite3 to another db between DB2, ORACLE or Microsoft SQL SERVER.
Can i only replace the database without touch the ...
0
votes
0answers
12 views
Memory fragmentation affect sqlite3 performance
I have following sequence in my application.
Download contacts from mobile phone using Bluetooth's PBAP.
Writing these contacts to a custom database created with SQLite.
I configured SQLite with ...
2
votes
1answer
59 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 ...
-2
votes
0answers
16 views
Library used incorrectly No transaction is active on this connection [closed]
When I start the Windows service, there are two threads to sqlite database operation, throw an exception:Library used incorrectly No transaction is active on this connection
Who can help me?thanks.
0
votes
1answer
23 views
Not able to update sqlite3 table iOS 5
I am working on Core Location framework, trying to calculate distance between the coordinates and updating the distance onto the database(sqlite3.0). But for some reason i get redundant data getting ...
1
vote
1answer
44 views
timeseries database to use with python
I have an application written in python, which stores some values currently in a text file
in the format of "datetime value". This worked fine so far.
The problem is now that I need to start ...
1
vote
1answer
35 views
Warning: Signed shift result (0x1F0000000) requires 34 bits to represent, but 'int' only has 32 bits
After compiling the reMail project with no error, one of the warnings is:
remail-iphone/sqlite3/sqlite3.c:18703:15: Signed shift result
(0x1F0000000) requires 34 bits to represent, but 'int' ...
0
votes
1answer
40 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, ...
1
vote
1answer
43 views
ToDo / Shopping Loist in iOS - searching for infos
)
For my new projekt I'm searching for tutorials to learn abit more, but I think I use the wrong keywords in google ;-) maybe you can help me finding more specific infos about.
So I want to create ...
0
votes
1answer
33 views
Running sqlite script in Sqlite db using C++
I have some sqlite scripts with some sqlite commands like:
.headers ON
.mode CSV etc.
Is there anyway of running this script in SqliteDB using Sqlite interface for C++, instead of ...
-2
votes
1answer
56 views
Load data according to database column value in PHP [closed]
I have a column called Type in my database table.
My web page has different user input fields for each type.
What i want to do is, when a page is loading, show fields according to first type. Then ...
0
votes
1answer
38 views
How to surround only string with quotations when joining dictionary values using Python?
i'm practicing on Python and trying to create a class that helps performing database operations, but when inserting to a database here's the code :
def Insert(self, **kwargs):
...
0
votes
1answer
50 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 ...
2
votes
1answer
32 views
In SQLIte, how to add a check on an existing column [duplicate]
In SQLite, I cannot find the syntax to add a check on an existing column. Is there a direct method to do that? Thanks.
0
votes
1answer
37 views
an error occurred: file is not a sqlite3 database
i used ESF Data Migration Toolkit to convert my SQL server 2008 database to a
SQlite one. The tool generate a file with the .mjf format. When i want to open it with the sqlite database browse it ...
0
votes
0answers
49 views
Where is sqlite3_native.rb in Windows with Ruby 2.0?
Using Ruby 2.0 x64 on Windows. Installed sqlite3 gem by downloading the sqlite3 autoconf sources and compiling. Then I did a gem install sqlite3 --platform=ruby .... However, now when I run rails ...
1
vote
2answers
52 views
Insertion to SQLiteDatabase
I wrote this code:
// CurrentFriendsTable
// ---------------------
//| _id | email | uname |
// ---------------------
// FFriend class
class FFriend {
String email, uname;
// getter and ...
1
vote
0answers
20 views
Use SPATIALITE on iOS
I'm developing an iOS 5.0+ app and I would like to know if there is a tutorial or an sample project that shows how to use Spatialite on iOS.
I don't want to know how to compile Spatialite on iOS ...
0
votes
0answers
30 views
I keep getting “InterfaceError: Error binding parameter 0 - probably unsupported type.”
I am trying to work my way through the official Django tutorial (https://docs.djangoproject.com/en/1.5/intro/tutorial01/) but I'm running into a problem when trying to use the shell.
Specifically, ...
1
vote
3answers
87 views
Rails 4.0rc1 app not running due to missing sqlite3 gem
First time I've tried installing Rails 4.0. On Windows 8 with Ruby 2.0 x64. Ran:
gem install rails --version 4.0.0.rc1 --no-ri --no-rdoc
Then I run:
rails new test_app
cd test_app
rails s
But ...
0
votes
3answers
33 views
How to convert an exits sqlite database into a Rails one?
I have a sqlite3 database with 3 tables which has 'id' column as primary key, but has no 'created_at','update_at' columns.
I want to use it in a Rails3 Applications.
How can I properly convert it into ...
1
vote
2answers
145 views
Could not find a valid gem install activerecord-sqlite3-adapter
I'm a beginner to Ruby.
I follow the steps on http://rubyonrails.org/download and
installed Ruby on rails and created a project called "Blog" by following the youtube tutorial. ...
0
votes
1answer
36 views
Incorrect output of cyrillic symblos to QTableView from Sqlite3 database
I have sqlite3 database filled with symbols in cyrillic encoding. But I can't output correctly this symbols to table. So, in qt app I get something like
�˫�� ⮢
I tried to use different variants of ...
0
votes
4answers
109 views
SQLite - WHERE Clause & UDFs
Intro
I have the following SQLite table with 198,305 geocoded portuguese postal codes:
CREATE TABLE "pt_postal" (
"code" text NOT NULL,
"geo_latitude" real(9,6) NULL,
"geo_longitude" real(9,6) ...
0
votes
0answers
28 views
Tree-based diff (for HTML/XML) in Python 3x
I am trying to find a library that will allow to perform "tree-based" diffs, or diffs that are aware of DOM structures. I have two lists with HTML content that I want to perform differential analysis ...
1
vote
1answer
18 views
sql injection in sqlite full text search
consider sqlite3 fts4 table
c.execute("CREATE VIRTUAL TABLE docs USING fts4(content)")
Is the following safe from sql injection where txt contains a string?
I am not sure if parameterised ...
1
vote
2answers
33 views
Installation of the sqlite3-ruby gem fails
whenever I try to install the gem:
gem install sqlite3-ruby
I get the following output:
D:/Ruby/bin/ruby.exe extconf.rb
checking for sqlite3.h... no
sqlite3.h is missing. Install SQLite3 from ...
0
votes
1answer
32 views
iOS sqlite/FMDB update not working
This isn't as easy and specific to ask as I'd like, but I'm really stuck with something.
I followed this tutorial, recreating it very similar for an iPad app:
...
0
votes
0answers
38 views
How to improve performance with UNIQUE column SQLite Android
I have a table with a UNIQUE column. it's for not add the same code "KEY_CODIALERTA + " TEXT UNIQUE". it works well but when I try to add the same code then I see error in "LogCat" saying that I cant ...
2
votes
1answer
65 views
Error starting server with rails server, sqllite error
I have just installed Ruby193 and Ruby200, and I'm trying to load the server after creating a new application but I'm getting the error below.
=> Booting WEBrick
=> Rails 3.2.13 application ...
0
votes
1answer
42 views
I can't update the SQLite database Android
I have a database with different tables, till now I was updating the database without problems. but now I want to add a new row in "TABLE_ALERTAS" even I upload the database version "DATABASE_VERSION ...
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 ...
1
vote
1answer
39 views
CantOpenException when migrating SQLite3 to PostgreSQL on Windows using 'taps' gem
I am trying to migrate a SQLite3 database to a PostgreSQL database using the 'taps' gem ( https://github.com/ricardochimal/taps ), as described in How do you easily change from SQLite to PostgreSQL in ...
1
vote
1answer
38 views
Working with a sql script in a Flask application
I have created a structure of a basic Flask application and I need guidance with executing a sql script. My folder structure is this:
-simpleblog (name of app)
flask (contains the virtual ...
0
votes
0answers
52 views
which is the better management tool of sqlite for creating desktop application? [closed]
I am creating desktop application in JavaFx.
1.I want simple installation ,free version open source and user friendly.This are the need.Mainly it can used with JavaFx.
So please can anyone tell me ...
0
votes
1answer
50 views
Pro n cons of using JavaFx with sqlite, or better option
I am creating a desktop application in JavaFx.
1.I want to save all data on client machine (data should be so big).
2.Want simple configuration with database (user friendly).
3.I search sqlite is ...
1
vote
0answers
31 views
CREATE and DROP a table while another statement is in place
In my previous implementation, I was streaming results from a sqlite3 table directly into my output application. However, since I am changing the interface to a temporary data structure, I now need ...
0
votes
2answers
62 views
sqlite3_prepare_v2() == SQLITE_OK returns NO and existing table is not found
I am developing an iphone application which using sqlite3 database file. and i am using following code to select from sqlite3 database ;
NSString* dbYolu = [NSString ...
0
votes
3answers
46 views
Query doesnt work on android, column '_id' does not exist?
I hope anyone can help me with this.
I'm using sqlite3 on my android app. I'm trying to do this query:
mCursor = conexion.getDatabase().rawQuery("SELECT employee.name, company.name FROM employee "
...
0
votes
1answer
18 views
Multilingual SQLite in Android
I'm developing an Android app. I've put the SQLite file in res/raw.
It's working very well. Now I want to add other languages to my app, and therefore the application need to be translated.
What do ...
0
votes
0answers
23 views
How to integrate commercial edition of SQLCipher into a Rubymotion application
I encrypt a plaintext.db to an encrypted db using sqlite3 binary shipped in the zip package #sqlcipher-export .
sqlite> ATTACH DATABASE 'encrypted.db' AS encrypted KEY 'testkey';
sqlite> SELECT ...
0
votes
0answers
39 views
LDAP SQLite communication or link
I have openLDAP server up and running locally, I have a C API that connects to it and also queries it, Also I have a Sqlite Database setup using ODB which is a ORM unlike hibernate in Java.
Now, I ...




