[sqlite] unrecognized parameter: content=""

2012-07-20 Thread AJ ONeal
I've tested with sqlite3 and the nodejs sqlite3 module and I get this error when using the example from the documentation (as well as variants more suitable to my application) for full-text search. Docs: http://www.sqlite.org/fts3.html#section_6_2_1 Test: CREATE VIRTUAL TABLE t1 USING

Re: [sqlite] System.Data.SQLite, Linq, multithread and transaction usage

2012-07-20 Thread Joe Mistachkin
The basic thread-safety rules of System.Data.SQLite are documented here: https://system.data.sqlite.org/index.html/artifact?ci=trunk=Doc/Ext ra/limitations.html -- Joe Mistachkin ___ sqlite-users mailing list sqlite-users@sqlite.org

[sqlite] Fwd: Some kind of disk I/O error occurred–SQLite3

2012-07-20 Thread wei luo
-- Forwarded message -- From: wei luo Date: 2012/7/20 Subject: Some kind of disk I/O error occurred–SQLite3 To: danielk1...@gmail.com hi: i am a user who is seeing some kind of disk I/O error when attempting to use an SQLite3 database. i want to ask

Re: [sqlite] sqllite db - remote access on a shared host

2012-07-20 Thread Sebastian Bermudez
I know 3 desktop app... wich make an PHP tunnel to manage sqlite3 db... 1) Navigat SQL Free (has version for free) 2) SQL Maestro for sqlite (has version for free i think..) 3) Ems Manager for sqlite --- On Fri, 7/20/12, Kieran Hever wrote: > From: Kieran Hever

Re: [sqlite] database AND table already exist?

2012-07-20 Thread Igor Tandetnik
Black, Michael (IS) wrote: > Good pointso probably time equivalent either way. Though table_info will > allow the feature creep of "does a column exist" > pretty easily. So would preparing a statement of the form "select ColumnToCheck from TableToCheck;" -- Igor

Re: [sqlite] database AND table already exist?

2012-07-20 Thread Black, Michael (IS)
Good pointso probably time equivalent either way. Though table_info will allow the feature creep of "does a column exist" pretty easily. Not that anybody ever adds requirements Michael D. Black Senior Scientist Advanced Analytics Directorate Advanced GEOINT Solutions Operating

Re: [sqlite] database AND table already exist?

2012-07-20 Thread Igor Tandetnik
Black, Michael (IS) wrote: > table_info() will be faster than doing "select *" I would think in most all > cases. To check the existence of a table, you don't need to actually run the select statement - just prepare it and check for errors. -- Igor Tandetnik

Re: [sqlite] database AND table already exist?

2012-07-20 Thread Black, Michael (IS)
I needed a quick excercise this morning. Never used table_info() before. table_info() will be faster than doing "select *" I would think in most all cases. #include #include #include #include "sqlite3.h" using namespace std; bool dbExists(string dbName) { sqlite3 *db; int rc =

Re: [sqlite] database AND table already exist?

2012-07-20 Thread Simon Slavin
On 20 Jul 2012, at 11:51am, Arbol One wrote: > Is there a way to find out if a certain database AND table already exist? > > In my C++ program I would like to query SQLite3 to find out if a database > already exists and also if a particular table exists in that database. Is

Re: [sqlite] database AND table already exist?

2012-07-20 Thread Donald Griggs
Darn. I didn't mean to quote the table name: (though double quotes or brackets are alllowed). Sorry for the noise. SELECT 'anything' FROM MyTableInQuestion LIMIT 0; ___ sqlite-users mailing list sqlite-users@sqlite.org

Re: [sqlite] database AND table already exist?

2012-07-20 Thread Donald Griggs
On Fri, Jul 20, 2012 at 6:51 AM, Arbol One wrote: > Is there a way to find out if a certain database AND table already exist? > > I am using std i/o methods to check for the existing SQLite3 file > containing the database, ==> I think that's the standard method. but I

Re: [sqlite] Many tables in one database

2012-07-20 Thread Donald Griggs
Arbol One wrote: > Using SQLite3.7.8 amalgamation and C++, I would like to create a database > with several joined tables. Can SQLite3 have many tables in one database? > > I'm perhaps not understanding your question. -- If you mean "Can a sqlite

[sqlite] database AND table already exist?

2012-07-20 Thread Arbol One
Is there a way to find out if a certain database AND table already exist? In my C++ program I would like to query SQLite3 to find out if a database already exists and also if a particular table exists in that database. Is there a way to do this? I am using std i/o methods to check for the

Re: [sqlite] sqllite db - remote access on a shared host

2012-07-20 Thread Jean-Christophe Deschamps
Hi, I there any application/program paid or free that will allow me to connect to a remote shared host sqlite DB. A program which will allow me to make changes to the db design and do backups. I have very little control on the shared host. I am hoping for something that will let me connect

[sqlite] Many tables in one database

2012-07-20 Thread Arbol One
Using SQLite3.7.8 amalgamation and C++, I would like to create a database with several joined tables. Can SQLite3 have many tables in one database? Freedom of speech does not translate to freedom of insulting ___ sqlite-users mailing list

Re: [sqlite] sqllite db - remote access on a shared host

2012-07-20 Thread Roger Andersson
On 07/20/12 11:21, Kieran Hever wrote: Hi, I there any application/program paid or free that will allow me to connect to a remote shared host sqlite DB. A program which will allow me to make changes to the db design and do backups. I have very little control on the shared host. I am

[sqlite] sqllite db - remote access on a shared host

2012-07-20 Thread Kieran Hever
Hi, I there any application/program paid or free that will allow me to connect to a remote shared host sqlite DB. A program which will allow me to make changes to the db design and do backups. I have very little control on the shared host. I am hoping for something that will let me

Re: [sqlite] force read schema after "delete from sqlite_master"

2012-07-20 Thread Gabriel Corneanu
Yuriy Kaminskiy wrote: >Check >PRAGMA secure_delete; >(and disable if it was enabled by default; it would be rendered ineffective by your trick anyway). It is not enabled. >Probably there are way to make it work (altering PRAGMA schema_version; or >something), but I think it is way to