-1
votes
1answer
13 views

members and staff login info schema

So I have two tables, members and staff. I need to create a login system which means I need to store usernames and passwords for both members and staff. How should it be implemented? Add columns ...
0
votes
2answers
37 views

Sqlite check for multiple values- Android

I have a requirement where I need to check for multiple values in sqlite where clause. The query goes like this. String sql = "SELECT * FROM _jobcard_table as t1 " + " left join _customer_table ...
-1
votes
1answer
15 views

Heroku support for Sqlite and Postgres [closed]

Why doesn't Heroku support sqlite3? or Why does Heroku only support PostgreSQL? In case I am completely wrong and Heroku does support either MySQL or sqlite3 could you please tell me how? thx :)
0
votes
2answers
14 views

Create View of MYSQL to sqlite3

I have this two views in mysql and I when I execute they in sqlite3 throws me the error Error: near "(" I have cheked it: http://www.sqlite.org/lang_createview.html The Views: CREATE VIEW ...
-2
votes
1answer
42 views

How to write the following sql query for the following? [closed]

I have a table has columns like this docid (documentID) Word (word in the document) count (number of occurrence of word in this document) I need a query which can do the following thing - get ...
0
votes
2answers
27 views

how to get NULL from sqlite in xcode

I want one application that has sqlite DB. in my sqlite DB exist 5 records that any record has 2 column. (Name,ID,key) one of all ID is NULL and I want get this. (ID is INTEGER variable) this is my ...
-1
votes
0answers
14 views

Can more than one client to connect to a Sqlite at the same time? [duplicate]

My specific question : Can more than one client to connect to a Sqlite at the same time ?
1
vote
1answer
40 views

how to use loop in sqlite for get Name from certain column

I to use sqlite database in my application. in my sqlite exist 10 records. I want read 4 data from this database and I want get this data until BroID in last data to be NULL (BroID is one of columns ...
0
votes
0answers
8 views

Detect php SQLite3 “not an error” exceptions

I'm using the SQLite3 libraries for unit testing a DB migration management tool. I seem to have discovered a flakey scenario though. The SQLite3::query() function is throwing an exception in the ...
0
votes
1answer
13 views

Difference of quoted column names

I just added a new column to my sqlite database with following command: ALTER TABLE foo_table ADD COLUMN fooCol TEXT NOT NULL DEFAULT 'foo'; When I look at the dump, I get the following: PRAGMA ...
2
votes
2answers
35 views

SQL enforce a limit of up-to N items capacity for a database

I have a database where we cache various data, but it shouldn't grow too large, so I need to place a limit to how much items of the same type it holds, after which it should reject new items. So as a ...
0
votes
1answer
16 views

Sqlite Create temp trigger statement unsuccessful at query prepare

The following query gives SQLITE_ERROR at prepare function in sqlite: Edit: CREATE temp trigger TIME_INTERVALS_TRIG AFTER INSERT ON _TIME_INTERVALS WHEN new.INTERVAL_START == 25; This query works ...
4
votes
4answers
21 views

how to show record from null column

I have to use from sqlite DB and I insert many data in my sqlite file. now I want execute records that has "NULL". in oder word I want to see records that are "NULL". when I execute this code I ...
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 ...
-2
votes
3answers
64 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
21 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
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- ...
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
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
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 ...
0
votes
1answer
28 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
41 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
50 views

Insertion to SQLiteDatabase

I wrote this code: // CurrentFriendsTable // --------------------- //| _id | email | uname | // --------------------- // FFriend class class FFriend { String email, uname; // getter and ...
1
vote
2answers
56 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
1answer
33 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
102 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
1answer
36 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
0answers
51 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
46 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 ...
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 ...
1
vote
3answers
46 views

Complex SQL Query - nested query

Here is the job_form table... job_num | name | address | ---------+------+---------+ 1 | Tom | Smith | 2 | John | Doe | 3 | Max | Smith | Here is the individual_job ...
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
1answer
35 views

Can't get WHERE NOT EXISTS to work

I have two tables number & allocation. allocation has the number primary column as a foreign key. I have a view that gives me all the numbers that exist in the allocation table. I am however ...
1
vote
0answers
37 views
+50

effectively unlocking an SQLite database

I have a program which frequently crashes (Zotero), leaving its SQLite database locked and inaccessible for use by the restarted program unless I reboot (which I really want to avoid). So this does ...
-2
votes
4answers
89 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
2answers
41 views

Add file to blob fileld in sqlite db

How can I add image file, for example, with name '001.png' to sqlite3 database using its command prompt? sqlite3> INSERT INTO test (id, name, blob_field) VALUES (NULL, 'Bob', ?????);
-1
votes
1answer
30 views

How can I continuously stream the content of a SQLite table via command line (adb sqlite3) instead of manually pulling it?

I have a batch script which shows me the content of an SQLite db table on a real device: @ECHO OFF SET packageId=com.brightideahub.motorassistant SET databaseName=test_event_data.db SET ...
0
votes
1answer
17 views

SQlite joining results

I have a table , let's call it Customer and a FullText Table Customer_t which based on the text in the table that is indexed. Customer ID Name City Customer_t ID SearchText (just the ...
0
votes
1answer
19 views

SQLite FullText Index search on 2 terms with AND & OR

I have created a Full Text Index and can search terms like this: SELECT * FROM mytable where myfield MATCH 'Food' How do I add an AND clause to return records with the word FOOD and DOG ? I've ...
0
votes
1answer
48 views

Error when trying to run Node.js Ubuntu project in Mac:

I am working with Node.js, Express.js and sqlite3 to create a small website. I have developed my project in Ubuntu and I have been trying to get it to work in Mac also. But after I svn checkout from ...
0
votes
1answer
33 views

SQLStatement is getting rejected

I'm trying to insert a user note into a sqliteDB through this method but for some reason, its not passing this if statement... if(sqlite3_prepare_v2(database, sqlStatement, -1, ...
-1
votes
1answer
48 views

Sqlite Like Function in objective C

SELECT count(*) from BOOKS where BOOKS.TAG_ID like '%,1,%' I wanna Execute this query in Objective-C. const char *sql = "Select count(*) from Documents WHERE DocumentTag LIKE '%i,?,%i'"; ...
0
votes
0answers
30 views

PHP SQLite website working with external content on one server but not others

Currently I have a website that works fine under a Mint 14 (Ubuntu) Virtual Machine but fails to correctly run on other machines such as Windows using XAMPP or another Ubuntu Server. When on failing ...
13
votes
4answers
166 views

Connect to a Database in Flask, Which Approach is better?

Method One: Using special g object from http://flask.pocoo.org/docs/tutorial/dbcon/ and http://flask.pocoo.org/docs/patterns/sqlite3/ import sqlite3 from flask import g DATABASE = ...
0
votes
1answer
65 views

How to create a user defined function in sqlite or get distance between 2 geopints?

I want to calculate distance between two geopoints one point which is stored in my local db and other point is my current location.How can I get it. I want to fire SELECT *, 3956 * 2 * ASIN ( SQRT ...
1
vote
1answer
17 views

insert trigger insert value back

I want to create a trigger on an insert action. This trigger should fire when a new row of clients is created. The trigger should create a new row in the accounts table and then insert the key value ...
0
votes
2answers
63 views

SQLite upper() alike function for international characters

Actually question was asked several times, but I didn't manage to find answer. There's set of SQLite table(s) which are read-only - I can't change their structure or redefine collation rules. Tables ...
0
votes
1answer
36 views

SQLite readonly optimizations in multi-threaded environment

I am trying to get maximum performance from SQLite DB which is used in readonly mode on iOS device. So far I found these things have positive impact on performance: sqlite3_exec(ret, "BEGIN ...
0
votes
1answer
33 views

Updating unique instance of a group of rows

I have a table with a UID field, an "in study" field (which will take either 0 or 1), and a text field. There are many duplicates in the text field. So far I have figured out a way to select only the ...

1 2 3 4 5 32