Re: [sqlite] [?? Probable Spam] Re: Vista frustrations

2008-09-18 Thread Bogusław Brandys
Virgilio Alexandre Fornazin pisze: > Sure. I just tell to do this test to check if the bug is related to this > component, since it debuted on Vista. > Silly thought,but could it be related to database file extension ? I mean , is it possible that OS is caching some files depending on

Re: [sqlite] Reading a damaged database file?

2006-08-02 Thread Bogusław Brandys
Gunnar Roth wrote: Olaf Beckman Lapré schrieb: Hi, Is there a way to do this programmatically? I would like to recover from a damaged database upon program startup. 1. Copy the code for dump command from shell.c 2. Try if "vacuum;" command repairs the database. with "pragma

Re: [sqlite] SQLite Vs VistaDB - Comparison ???

2006-06-16 Thread Bogusław Brandys
Christian Smith wrote: Bogus�aw Brandys uttered: [EMAIL PROTECTED] wrote: Mikey C <[EMAIL PROTECTED]> wrote: Please implement table and row level locking. :-) People commonly believe that doing so must be easy. I certainly get a lot of requests for it from people who think they know how.

Re: [sqlite] SQLite Vs VistaDB - Comparison ???

2006-06-16 Thread Bogusław Brandys
[EMAIL PROTECTED] wrote: Mikey C <[EMAIL PROTECTED]> wrote: Please implement table and row level locking. :-) People commonly believe that doing so must be easy. I certainly get a lot of requests for it from people who think they know how. But in fact, row-level locking is extraordinarily

Re: [sqlite] Random error SQLITE_CANTOPEN on Windows XP SP2 with sqlite3_exec

2006-06-05 Thread Bogusław Brandys
[EMAIL PROTECTED] wrote: Dave Dyer <[EMAIL PROTECTED]> wrote: The real problem is that sqlite assumes it "owns" the temporary transaction file that it created, and can do anything it wants with it; for example read, rename, or delete it. I think this is a very reasonable assumption. Any

Re: [sqlite] Random error SQLITE_CANTOPEN on Windows XP SP2 with sqlite3_exec

2006-06-05 Thread Bogusław Brandys
A. Pagaltzis wrote: * Roger Binns <[EMAIL PROTECTED]> [2006-06-05 00:05]: I don't know if anyone has tracked how well Spotlight (Mac) or Beagle (Linux) work with SQLite files. They cause no problems. The semantics of the filesystem API on *nix systems differ from those of Windows; in short, a

Re: [sqlite] First query on database takes forever...?

2006-05-01 Thread Bogusław Brandys
Mats Gefvert wrote: Usually Windows XP/SP2. The file name of the database is usually "vision8020" with no extension. That couldn't be a problem, could it? Shut down system restore Pardon? / Mats System restore feature of Windows XP. I'm guessing now... Regards Boguslaw

Re: [sqlite] First query on database takes forever...?

2006-05-01 Thread Bogusław Brandys
Mats Gefvert wrote: What system you are using ? If this is Windows XP or 2003, then what is the name of this sqlite database ? Usually Windows XP/SP2. The file name of the database is usually "vision8020" with no extension. That couldn't be a problem, could it? / Mats Shut down system

Re: [sqlite] large table performance

2006-03-03 Thread Bogusław Brandys
Daniel Franke wrote: Hi all. I spent the last days bragging that a single database file as provided by sqlite is a far better approach to store data than -literally- thousands of flat files. Now, I got a small amount of testing data an wow ... I'm stuck. Area: Bioinformatics. Imagine a

Re: [sqlite] Decimal separator

2006-01-31 Thread Bogusław Brandys
Bert Verhees wrote: Carl Jacobs wrote: All would be fine but look at this : create table test( price double, amount double default 0 ); insert into test(price) values("12,0"); amount now = 0.0 The world seems to have settled on using Arabic numerals 0, 1, 2 ... 9. I think we should

Re: [sqlite] Decimal separator

2006-01-31 Thread Bogusław Brandys
Bogusław Brandys wrote: Bogusław Brandys wrote: Hello, Maybe someone could explain me how to properly store float/decimal values into sqlite 3.X database ? I created test table: create table test(number double); insert into test(number) values(11); Now it looks like: 11.0 so

Re: [sqlite] Decimal separator

2006-01-31 Thread Bogusław Brandys
Bogusław Brandys wrote: Hello, Maybe someone could explain me how to properly store float/decimal values into sqlite 3.X database ? I created test table: create table test(number double); insert into test(number) values(11); Now it looks like: 11.0 so, '.' seems to be always decimal

[sqlite] Decimal separator

2006-01-31 Thread Bogusław Brandys
Hello, Maybe someone could explain me how to properly store float/decimal values into sqlite 3.X database ? I created test table: create table test(number double); insert into test(number) values(11); Now it looks like: 11.0 so, '.' seems to be always decimal separator. But under my

Re: [sqlite] Slow query after reboot

2006-01-24 Thread Bogusław Brandys
Geoff Simonds wrote: Thanks to everyone for all the help on this problem. I am going to try creating a new thread to touch the tables at startup. Chris Schirlinger wrote: We have the same issue, to get around it we fire a thread when the program starts, intelligently "touching" every table

Re: [sqlite] Re: Stored Procedure or Functions

2005-12-25 Thread Bogusław Brandys
Igor Tandetnik wrote: "Vishal Kashyap" wrote Is their any way we can write simple stored procedures or functions in sqlite. If yes please do guide me I need this functionality in one of my open source project. Not in the usual sense, meaning some language that gets stored in the database

Re: [sqlite] Follow-up to "database disk image is corrupted" problem

2005-12-25 Thread Bogusław Brandys
Eric Scouten wrote: Earlier today I posted a question about SQLite compiled into my application generating a "database disk image is corrupted" on a particular query, but the command-line application does not (even using the same database file). I haven't seen that message posted yet, but I

Re: [sqlite] Convert / Import

2005-08-20 Thread Bogusław Brandys
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Griggs, Donald wrote: > -Original Message- > From: administrator [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 16, 2005 5:01 AM > To: sqlite-users@sqlite.org > Subject: [sqlite] Convert / Import > > > Does anybody know a good/quick way

Re: [sqlite] using sqlite as a temporary database to process lots of data

2005-07-02 Thread Bogusław Brandys
Patrick Dunnigan wrote: > I am currently using SQLite to process @ 400 million records (and climbing) > a day by reading files, importing them into SQLite, and summarizing. The Wow! How much memory those 400 milion of records is using ? Do you use Sqlite 2 or 3 version ? I was told that SQlite