Hello Paul Bohme,
Could u please send me across the patch for cross compiling configure
script sqlite for ARM + Linux, which u might hav given to ben.
it would be a great help.
thanks and awaiting for the reply.
cheers,
shishir
[EMAIL PROTECTED]
> The right way to do this query is:
>
> SELECT * FROM vals2d WHERE rowid IN
> (SELECT rowid FROM vals2d WHERE x=1
> UNION ALL SELECT rowid FROM vals2d WHERE y=1);
Unfortunately this tranform does not work on views
or subqueries due to NULL rowids.
sqlite> create table abc(a,b,c);
sq
Igor Tandetnik wrote:
>
> By the way, for most queries you will find that the execution time
> grows as the OFFSET grows. To implement OFFSET X, the engine would
> enumerate records from the beginning and simply ignore the first X-1.
> Retrieving the last pageful often takes almost as long as retri
This problem is as old as data processing. The "page N of M" situation
which requires that the entire data set be read to get M. Once you have
read the entire set you have many options on how you handle your window
on that dataset. You could use local storage for it all or take
advantage of
[EMAIL PROTECTED] wrote:
"Fred Williams" <[EMAIL PROTECTED]> wrote:
How about some form of automated(?) sequence where:
New subscriber submits subscription request.
System sends "query" message to subscriber address.
New subscriber sends "confirmation" message within
1200 is a modest number for a mailing list . Expect it to go up to 3-4000 as
SQLite gets more popular. One reason for the lists popularity is the
friendliness of the list members and their willingness to respond to basic
SQL queries. At some stage the list could be split into two. One for wrappe
All the filenames you need to modify are on the download page.
Regards.
rayB
** PLEASE CONSIDER OUR ENVIRONMENT BEFORE PRINTING
*
*** Confidentiality and Privilege Notice
***
This e-mail is intended only to be read or used by the addres
To perform a count one has to read the entire dataset regardless. Why
not implement your logic within your own program, using prepare and step
and ceasing to unload data from the columns when you hit your predefined
limit?
JS
Mikey C wrote:
Hi,
I think this has been discussed before, but I c
This is an excellent idea.
Alex
René Tegel wrote:
Hi,
Seen the popularity of sqlite, i think 1200 subscribers is very
reasonable. Lots of people track mailing lists, only contributing
rarely but nevertheless are interested.
You could consider a system that requires moderation by the list
Mikey C wrote:
I don't think you really understand what I'm trying to say.
Web based systems require paging that does not iterate through all
records.
I understand perfectly what you want. All I'm saying is there are solid
technical reasons why SQLite (and really any other SQL engine) cannot
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Monday, May 29, 2006 7:25 AM
> To: sqlite-users@sqlite.org
> Subject: Re: [sqlite] Purging the mailing list roles. Was:
> Please Restore Your Account Access
>
> Such a system is already in place. Please reca
Clay Dowling <[EMAIL PROTECTED]> was heard to say:
> You might want to consider reworking the check mechanism, using the
> capture mechanism that a lot of web forums and blogs use. Users must
> type in text presented on a web page in the form of a graphic. That
> will put a stop to the automated
[EMAIL PROTECTED] wrote:
"Fred Williams" <[EMAIL PROTECTED]> wrote:
How about some form of automated(?) sequence where:
New subscriber submits subscription request.
System sends "query" message to subscriber address.
New subscriber sends "confirmation" message within r
"A. Pagaltzis" <[EMAIL PROTECTED]> wrote:
>
> At the same time, to my knowledge, a query which has an `ORDER
> BY` clause always has to produce all results before it can apply
> a `LIMIT` to the result set, so at least in that case, what you
> want should be possible.
>
Depends. SQLite will use
* Mikey C <[EMAIL PROTECTED]> [2006-05-29 17:10]:
> Do you imagine Google loads 8 billions records into memory when
> the user is just viewing 10 results in page 5 after a broad
> search?
You can’t ask Google for more than the first 1,000 hits on any
search. (Go ahead and try.) There is a reason f
I don't think you really understand what I'm trying to say.
Web based systems require paging that does not iterate through all records.
What is required is a means to LIMIT the results read from the database but
at the same time know how many records WOULD have been returned if the query
was not
"Anish Enos Mathew" <[EMAIL PROTECTED]> writes:
> Igor, I know that it will show error when we try to insert a value which
> is already there in the database when that field is a primary key. But
> I want to check it out and I don't want that number to be inserted into
> the database. I was askin
Igor, I know that it will show error when we try to insert a value which
is already there in the database when that field is a primary key. But
I want to check it out and I don't want that number to be inserted into
the database. I was asking about a method which finds this. I don't want
to termi
--- [EMAIL PROTECTED] wrote:
> And yet somehow, the spammer still managed to get
> signed up
> using a "paypal.com" address. How did they do that?
Its probably very easy to screen scrape the message to
harvest every link in the confirmation message and do
a wget on it! I must admit that I do not
Here's an example:
---
Hi Fred Willisams,
Please click on the following link to activate your account. Then start
Worksite CD and click 'Yes' to get current prices at your local Home
Depot:
Please Click Here!
Thank you for using The Home Depot Worksite CD. If you need help with
Worksite
"Fred Williams" <[EMAIL PROTECTED]> wrote:
> How about some form of automated(?) sequence where:
>
> New subscriber submits subscription request.
>
> System sends "query" message to subscriber address.
>
> New subscriber sends "confirmation" message within reasonable time
> per
Anish Enos Mathew wrote:
I want to insert 100 records into the database randomly. Here
"seq_number" is the primary key. Is there any method by which I can
check whether a randomly selected number which I am going to insert in
the database already exists in the database or not?
Anish,
Anish Enos Mathew <[EMAIL PROTECTED]>
wrote:
I created a table as follows.
create table data_table(seq_number integer primary key,data
text,curr_date text)",NULL, NULL, NULL);
I want to insert 100 records into the database randomly. Here
"seq_number" is the primary key.
Mikey C wrote:
However if LIMIT is added to the SQL, I do not get a count of the
records that the SQL select would have produced if I had not limited
the query with LIMIT.
I could do two selects with the same WHERE restriction, one with
SELECT COUNT(*) and the other with SELECT field1, field2,
How about some form of automated(?) sequence where:
New subscriber submits subscription request.
System sends "query" message to subscriber address.
New subscriber sends "confirmation" message within reasonable time
period.
List access granted on receipt of confi
How do I unsubscribe? I don't want to keep getting these emails.
-Original Message-
From: Noel Frankinet [mailto:[EMAIL PROTECTED]
Sent: Monday, May 29, 2006 9:23 AM
To: sqlite-users@sqlite.org
Subject: Re: [sqlite] SQLite as R data store and spatial data maybe ?
[EMAIL PROTECTED] wro
[EMAIL PROTECTED] wrote:
Noel Frankinet <[EMAIL PROTECTED]> wrote:
You might want to take a look at DRH's proposal,
http://www.sqlite.org/cvstrac/wiki?p=VirtualTables
which looks like it would make it easier for the R community to
implement the sort of interface you're talking about.
[EMAIL PROTECTED] wrote:
In order to be able to send messages to this mailing list,
the spammer above had to subscribe. To subscribe means that
he had to respond to an email that was sent to the subscription
address. Since his email address does not exist, I'm wondering
how he managed to pull
* [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2006-05-29 12:50]:
> I wonder if I need to implement some kind of mechanism that
> requires you to either send a message to the mailing list or
> else renew your subscription every 3 months. Does anybody have
> any experience with other mailing lists that re
I second this. I don't mind having to post or refresh my subscription every
once in a while. It would however be important for me to receive a notification
to refresh my subscription instead of just silently removing my subscription.
HTH,
Mike
>Hi,
>
>I think many of the 1217 active subscribers
Hi,
Seen the popularity of sqlite, i think 1200 subscribers is very
reasonable. Lots of people track mailing lists, only contributing rarely
but nevertheless are interested.
You could consider a system that requires moderation by the list
administrator for each first message a newly subscrib
Hi,
I think many of the 1217 active subscribers are people like me who tune in to
the list but only contribute once in a blue moon.
I do not have any objection to a "send email to keep your subscription active"
idea, but I have never seen that used in the other mailing lists that I
subscribe
[EMAIL PROTECTED] schrieb:
> Andreas Schwarz <[EMAIL PROTECTED]> wrote:
>> Hi,
>>
>> I would like to use SQLite in an embedded device (MP3 player), but I
>> didn't find any information on minimum RAM requirements. Can anyone give
>> me a rough estimate of how much RAM I will need? 1k/10k/100k/1M?
>
Hi!
Regarding my weird bug in regards to sqlite3_prepare. I have changed
from Finisar.SQLite to Mono.Data.SqliteClient - and this seems to be
working better.
I cannot reproduce the error with Mono.Data.SqliteClient - so I suspect
somekind of memory allocation error in either Finisar.SQLite or the
Hi,
I think this has been discussed before, but I can't find a good solution so
I'll post it again to see what people think.
Here's the problem. I have a large number of records in a table, which
contains many columns. Hence a large amount of data.
I have a SQL query that filters the results
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> dilettantes remain rude.Where we can almost borrow money from our
> earring.Hugo, the friend of Hugo and earns frequent flier miles
> with power drill near.
In order to be able to send messages to this mailing list,
the spammer above had to subscr
Hi, rayB
Thank you very much for the information about download previous version. I
have tried that and I've got the zip file which contains only sqlite3.exe.
How about the sqlite3.dll, what kind of file name we can download the dll
file.
Jack
- Original Message -
From: <[EMAIL PROT
Hi all,
I created a table as follows.
create table data_table(seq_number integer primary key,data
text,curr_date text)",NULL, NULL, NULL);
I want to insert 100 records into the database randomly. Here
"seq_number" is the primary key. Is there any method by which I can
c
38 matches
Mail list logo