[sqlite] Handling concurrent read request to SQLite

2012-07-25 Thread Navaneeth.K.N
Hello, I am writing a shared library which uses SQLite as the file format. This library has got a learning subsystem which can learn a word and all possible ways to type that word. Usually the word will be UTF-8 encoded indic text and patterns will be words with latin characters. I am using the

Re: [sqlite] Compiling System.Data.SQLite with latest sqlite3.dll

2012-07-25 Thread Joe Mistachkin
Please use the following and try again: con.ProviderConnectionString = "FullUri=file::memory:?cache=shared;"; The "FullUri" property supersedes the "Data Source" property. -- Joe Mistachkin ___ sqlite-users mailing list sqlite-users@sqlite.org

Re: [sqlite] C++ - All the data in ONE row

2012-07-25 Thread Black, Michael (IS)
In keeping with your example what you want to do is add a "done" flag to your write class. So you tell it when your SQL can be executed. Something like this: void someClass::write2tblName() { stmtName = "INSERT INTO name (n_id, title, fname, mname, lname) VALUES (?, ?, ?, ?, ?)"; int

Re: [sqlite] C++ - All the data in ONE row

2012-07-25 Thread Robert Myers
On 7/25/2012 10:02 AM, Arbol One wrote: OK, continuing with the writing to the database, here is the driver method for the class rapper for SQLite3. The problem I have is that I have no control as to the exact location where I want the data to be stored, look the table below to have a better

Re: [sqlite] C++ - nothing has been stored!!??

2012-07-25 Thread Eduardo Morras
At 03:27 25/07/2012, you wrote: And here I am again, asking for what you find so easy and I. well, just cannot understand. ... but this does not store anything in the database table. I have used an sqlite browser to determine if, in fact, some data was stored, but no, nothing has been

[sqlite] C++ - All the data in ONE row

2012-07-25 Thread Arbol One
OK, continuing with the writing to the database, here is the driver method for the class rapper for SQLite3. The problem I have is that I have no control as to the exact location where I want the data to be stored, look the table below to have a better idea of what I mean. My question is, is