Re: [sqlite] 'where a - b > 0' and 'where a > b' not the same?

2012-04-10 Thread Jian H. L.
> To: sqlite-users@sqlite.org > From: itandet...@mvps.org > Date: Tue, 10 Apr 2012 08:57:22 -0400 > Subject: Re: [sqlite] 'where a - b > 0' and 'where a > b' not the same? > > Jian H. L. wrote: > > The second one changes the where clause from the form of: > >

[sqlite] Is it possible to use substrings of Windows DOS batch fiile parameters in sqlite3.exe -line db ?

2012-04-10 Thread Frank Chang
Good evening, We are trying to generate automated SQLITE SQL scripts based on the names of SQLite tables derived by substring manipulation of Windows DOS batch file and/or Windows environment variables. For example: /* mary.bat */ FOR /f %%a IN ('dir /b *.zip') DO CALL sub %%a /*

Re: [sqlite] Searching for system.data.sqlite version 1.0.74.0

2012-04-10 Thread Joe Mistachkin
Konstantin P. wrote: > > So i was looking around for this version, but it seems, that it is not possible > to still get it. > Yes, it's possible to get it. Normally, by using the current download URL for the package you are interested in, replacing the current version number in the URL with

Re: [sqlite] Table inserts take a long time to complete.

2012-04-10 Thread Simon Slavin
On 10 Apr 2012, at 7:09am, Rick Guizawa wrote: > Hi All, I would very much appreciate if someone could help me speed up my > database table insertion process as what I have in the followings took a > long time to complete even when using sqlite3 shell command. > > Thank

Re: [sqlite] Unicode problem when setting PRAGMA journal_mode

2012-04-10 Thread Simon Slavin
On 10 Apr 2012, at 1:42pm, Nick Shaw wrote: > Realised I made a typo below: should have said "PRAGMA journal_mode = DELETE" > (though setting it to WAL or OFF causes the same problem). Are you by any chance having a technical problem with the PRAGMA command itself ?

Re: [sqlite] sqlite gui app

2012-04-10 Thread Andrew Barnes
>>hello, I wana show my sqlite database in wxwidgets gui library,but I don't know how to do this. could you tell me any resource about this? thank you! have a look at http://wxcode.sourceforge.net/components/wxsqlite3/ google is your friend!

[sqlite] Searching for system.data.sqlite version 1.0.74.0

2012-04-10 Thread Konstantin P.
Hello Everybody, i am using Quartz.Net 1.x in one of my projects and i am actually upgrading to Quartz.Net 2.0. Quartz offers a direct implementation of Sqlite for a persistent, automated storing. This version of Quartz supports the 1.0.74.0 Assembly of System.Data.SQLite. So i was looking

Re: [sqlite] 'where a - b > 0' and 'where a > b' not the same?

2012-04-10 Thread Igor Tandetnik
Jian H. L. wrote: > The first and the third queries are the same. > > The second one changes the where clause from the form of: > 'where a - b > 0' > > to: > 'where a > b' > > Shoudn't the two where clauses be the same? Only if a and b are both numeric. But

Re: [sqlite] Issue with Session while using SQLLITE database

2012-04-10 Thread Dorababu Meka
Yeah on Inserting or Updating the session is getting *NULL* On Tue, Apr 10, 2012 at 6:25 PM, Taleeb Anwar wrote: > Of course the value will not be inserted - but just wanted to make sure > that the problem is occurring on insertion..! > > Thanks & Regards > Taleeb Anwar >

Re: [sqlite] Issue with Session while using SQLLITE database

2012-04-10 Thread Taleeb Anwar
Of course the value will not be inserted - but just wanted to make sure that the problem is occurring on insertion..! Thanks & Regards Taleeb Anwar *Hai Ab bhi Tera "Shwarma" Afsana Khwan Humara!!* On Tue, Apr 10, 2012 at 6:23 PM, Dorababu Meka wrote: > How Can I

Re: [sqlite] Issue with Session while using SQLLITE database

2012-04-10 Thread Dorababu Meka
How Can I insert data in to the table if I comment that line as per you said.. Session value exists if I comment that line.. On Tue, Apr 10, 2012 at 6:20 PM, Taleeb Anwar wrote: > Though I don't know much about .NET...still > > Try the following > Comment the execute non

Re: [sqlite] Issue with Session while using SQLLITE database

2012-04-10 Thread Taleeb Anwar
Though I don't know much about .NET...still Try the following Comment the execute non query. Now Click on button 1 (no values will be inserted) and then on button 2. Is session value retained or lost? Thanks & Regards Taleeb Anwar *Hai Ab bhi Tera "Shwarma" Afsana Khwan Humara!!* On Tue,

Re: [sqlite] Unicode problem when setting PRAGMA journal_mode

2012-04-10 Thread Nick Shaw
Realised I made a typo below: should have said "PRAGMA journal_mode = DELETE" (though setting it to WAL or OFF causes the same problem). -Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Nick Shaw Sent: 05 April 2012 13:34

Re: [sqlite] Issue with Session while using SQLLITE database

2012-04-10 Thread Dorababu Meka
This is my code that I have written in .Net protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Session["x"] = "session value"; // assigning Session } } My code to insert data to the Database is as follows protected void

[sqlite] Issue with Session while using SQLLITE database

2012-04-10 Thread Dorababu Meka
Hi I am using SQLLITE database in my .net application. Unfortunately if I perform any operation like Insert and performing other operations like getting data from database my Session which was assigned before is getting * NULL.* Is this a bug or what, have you fixed this in later versions, if so

[sqlite] sqlite gui app

2012-04-10 Thread YAN HONG YE
hello, I wana show my sqlite database in wxwidgets gui library,but I don't know how to do this. could you tell me any resource about this? thank you! ___ sqlite-users mailing list sqlite-users@sqlite.org

[sqlite] 'where a - b > 0' and 'where a > b' not the same?

2012-04-10 Thread Jian H. L.
The first and the third queries are the same. The second one changes the where clause from the form of: 'where a - b > 0' to: 'where a > b' Shoudn't the two where clauses be the same? Why the second query shows nothing? Thank you sqlite> select planid, endtime, duration from

[sqlite] Table inserts take a long time to complete.

2012-04-10 Thread Rick Guizawa
Hi All, I would very much appreciate if someone could help me speed up my database table insertion process as what I have in the followings took a long time to complete even when using sqlite3 shell command. Thank you in advance for your help. Cheers, Rick CREATE TABLE [BuyPattern] ( [ID]