[sqlite] Suggestion to add "locate" as a broader version of "instr"

2014-02-14 Thread Max Vlasov
Hi, Some time ago when there was no "instr" functions, I looked at Mysql help pages and implemented a user function "locate" as the one that allows searching starting a particular position in the string. With two parameters form it was just identical to "instr" only the order of parameters was

Re: [sqlite] Is IBatis / MyBatis ORM Framework supports SQLite Client Database

2014-02-14 Thread Hari Hara Sudhan Ramachandran
thanks On Fri, Feb 14, 2014 at 11:29 AM, Richard Hipp wrote: > On Fri, Feb 14, 2014 at 11:24 AM, Hari Hara Sudhan Ramachandran < > loginsud...@gmail.com> wrote: > > > i tried to establish Database > > connection using Mybatis ( IBatis ) framework. > > > > This sounds like a

Re: [sqlite] Is IBatis / MyBatis ORM Framework supports SQLite Client Database

2014-02-14 Thread Richard Hipp
On Fri, Feb 14, 2014 at 11:24 AM, Hari Hara Sudhan Ramachandran < loginsud...@gmail.com> wrote: > i tried to establish Database > connection using Mybatis ( IBatis ) framework. > This sounds like a question for the Mybatis developers. I don't know anything about Mybatis. -- D. Richard Hipp

[sqlite] Is IBatis / MyBatis ORM Framework supports SQLite Client Database

2014-02-14 Thread Hari Hara Sudhan Ramachandran
Hi All, please guide me to resolve the below issue. We have an web application developed on Oracle Mobile server architecture. We are using oracle 10G with Oracle Lite as an Client Database. Application developed using JSF + Spring + Ibatis (ORM) framework. We are using Windows Handheld

Re: [sqlite] database table is locked issue

2014-02-14 Thread Sandu Buraga
> > I have a process with several threads working in the same time on a > > database file. I have 0 or 1 writers and 0 or N readers at a moment. All > > write accesses are isolated in transactions, I am using WAL and shared > > cache, but sometimes during the DELETE statemens I get "database

Re: [sqlite] SQLITE3 + php, problem "fetchArray(SQLITE3_ASSOC)"

2014-02-14 Thread Simon Slavin
On 14 Feb 2014, at 11:08am, Alberto Gioia wrote: > I wrote a web application that uses a combination of webserver, php and > sqlite. > A page uses a connection to a DB to generate with a choice a "select box", > all work good on pc. > I have installed all need on a

Re: [sqlite] SQlite3 Performnace

2014-02-14 Thread Simon Slavin
On 14 Feb 2014, at 8:54am, techi eth wrote: >> What are the changes in performance if I have single SQlite3 Database file >> (Contain 'N' table) or 'N' Database file each contain single table. > I have database on single Disk.In that case i see it is better to create >

[sqlite] SQLITE3 + php, problem "fetchArray(SQLITE3_ASSOC)"

2014-02-14 Thread Alberto Gioia
Hi all, I wrote a web application that uses a combination of webserver, php and sqlite. A page uses a connection to a DB to generate with a choice a "select box", all work good on pc. I have installed all need on a embedded linux using "lighttpd-1.4.32+php-5.4.6-sqlite3-3.7.1". The connection

Re: [sqlite] SQlite3 Performnace

2014-02-14 Thread techi eth
Thanks. I have database on single Disk.In that case i see it is better to create separate database file.If i am not wrong i will get better edge over concurrency in this case ? What do you mean by SQlite3 Query with I/O bound ? On Thu, Feb 13, 2014 at 9:22 AM, Hick Gunter