[sqlite] Using Indexing in Joins Method

2007-12-21 Thread Sreedhar.a
Hi, I am having 4 records and My table looks like , "CREATE TABLE ALBUMARTIST(AlbumArtistId INTEGER PRIMARY KEY NOT NULL,AlbumArtistName TEXT NOT NULL COLLATE NOCASE DEFAULT 'Unknown', UNIQUE(AlbumArtistName));" "CREATE TABLE ARTIST(ArtistId INTEGER PRIMARY KEY NOT NULL,ArtistName TEXT NOT

RE: [sqlite]:Using sqlite3_progress_handler for GUI application

2007-12-21 Thread Sreedhar.a
Hi, Thankyou very much for the suggestions. Best Regards, A.Sreedhar. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 19, 2007 12:41 AM To: sqlite-users@sqlite.org Subject: Re: [sqlite]:Using sqlite3_progress_handler for GUI application

Re: [sqlite] aces a databases store into a web server not into my local PC

2007-12-21 Thread finder
Ok, thanks. So, must upload my SQLITE onto my web server. Want to use Php - because my host server support Php. Where can I learn about how must be config.php. I don't know if must me configured like in SQL. I understood that Sqlite works in same maniere like SQL- when want a query from him.

[sqlite] PATCH: WHERE clause OR to UNION optimization

2007-12-21 Thread Joe Wilson
The attached patch implements the WHERE clause "OR to UNION" optimization as described in this post: http://www.mail-archive.com/sqlite-users@sqlite.org/msg09004.html If the computed cost of the rewritten WHERE clause is lower than the original query when indexes are taken into account, then

[sqlite] Trac Account

2007-12-21 Thread Shawn Wilsher
Hey all, I was wondering what it takes to an account on Trac. I'm basically the maintainer of the Mozilla Project's SQLite wrapper, and I'd find things to be a bit clearer if bug reports/comments made by me were in fact labeled as such. In addition, I believe that I can get e-mail notifications

Re: [sqlite] Fetch all result set to memory

2007-12-21 Thread drh
"Ofir Neuman" <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using SQLite in a multithread application and I would like to fetch every > select statement into the memory. > > I can't use sqlite3_get_table since it doesn't support Unicode as far as I > know. > > Is there a better way to fetch all

Re: [sqlite] Fetch all result set to memory

2007-12-21 Thread John Stanton
Whichever way you do it Sqlite fetches the rows one by one. Ofir Neuman wrote: Hi, I'm using SQLite in a multithread application and I would like to fetch every select statement into the memory. I can't use sqlite3_get_table since it doesn't support Unicode as far as I know. Is there a

[sqlite] Fetch all result set to memory

2007-12-21 Thread Ofir Neuman
Hi, I'm using SQLite in a multithread application and I would like to fetch every select statement into the memory. I can't use sqlite3_get_table since it doesn't support Unicode as far as I know. Is there a better way to fetch all the result to memory other than fetching it one by one and

Re: [sqlite] aces a databases store into a web server not into my local PC

2007-12-21 Thread Samuel Gilbert
What programming language are you using on the server side? PHP, Pyhton, Tcl, etc...? Theses languages allready have packages to access data sotred in SQLite. Samuel On 2007-12-21 16:10, finder wrote: > Hi, > I don't find how to aces a databases store into a web server, throught a > web

Re: [sqlite] aces a databases store into a web server not into my local PC

2007-12-21 Thread DJ Anubis
Le vendredi 21 décembre 2007, finder a écrit : > Hi, > I don't find how to aces a databases store into a web server, > throught a web page. > I want to make a form that post a query and receive the result > using a web page. > > Many thanks You could use a php script using the PDO::SQlite

[sqlite] aces a databases store into a web server not into my local PC

2007-12-21 Thread finder
Hi, I don't find how to aces a databases store into a web server, throught a web page. I want to make a form that post a query and receive the result using a web page. Many thanks -- View this message in context:

Re: [sqlite] shared cache mode locking

2007-12-21 Thread Ken
So did my post. We are talking about the same thing. Definately confusing, at least to me.. The problem exists wherein you have two shared connections and one connection performs a begin exclusive... The other connection was just ignoring the exclusivity lock and continuing on its merry way

Re: [sqlite] shared cache mode locking

2007-12-21 Thread Ed Pasma
No, you did not confuse me. We are talking about different things it appears. My post refers to the shared-cache locking model (http:// sqlite.org/sharedcache.html). The document is clear by itself. What makes it confusing, is that a shared cache instance exist as a single normal connection

Re: [sqlite] Explain query plan

2007-12-21 Thread Steven Fisher
On 20-Dec-2007, at 3:02 PM, Kees Nuyt wrote: You will get much more detail with EXPLAIN SELECT ... It shows the VDBE code, which looks cryptic at first but will prove really informative. I'm still at the cryptic phase, but I'll figure it out. Thanks for confirming my suspicions about

Re: [sqlite] shared cache mode locking

2007-12-21 Thread Ken
Ed, Sorry if I confused you, a "Write" lock is really an EXCLUSIVE lock per sqlite documentation. I used the two interchangeably, pardon my error. A begin exclusive indicates the beginning of a transaction, It escalates the database lock to an EXCLUSIVE lock. The begin transaction does not

Re: [sqlite] extremely differing speed on :memory: queries depending on initial db size

2007-12-21 Thread Wurst99
hey all, thnx for your replies so far. some more details to get into it: first of all i'm coding a .net application using the ado.net 2.0 provider by robert simpson. i posted there as well but thought it would be more of a core sqlite problem (suspecting memory handling by sqlite or os or ..),

[sqlite] Re: database column attributes

2007-12-21 Thread Igor Tandetnik
arbalest06 <[EMAIL PROTECTED]> wrote: i got it working already..thank you so much!..would this check(length(a) <= 3 also work if the datatype is integer? If you want to limit an integer, just write check(a <= maxValue) Igor Tandetnik

RE: [sqlite] database column attributes

2007-12-21 Thread Fred Williams
Answers in line. > -Original Message- > From: arbalest06 [mailto:[EMAIL PROTECTED] > Sent: Friday, December 21, 2007 9:23 AM > To: sqlite-users@sqlite.org > Subject: [sqlite] database column attributes > > > > good day! > > i want to create a database with a table that has a column which

Re: [sqlite] database column attributes

2007-12-21 Thread arbalest06
i got it working already..thank you so much!..would this check(length(a) <= 3 also work if the datatype is integer? Igor Tandetnik wrote: > > arbalest06 <[EMAIL PROTECTED]> wrote: >> i want to create a database with a table that has a column which is a >> TEXT..i want to specify the maximum

Re: [sqlite] Re: database column attributes

2007-12-21 Thread Dennis Cote
Igor Tandetnik wrote: arbalest06 <[EMAIL PROTECTED]> wrote: i want to create a database with a table that has a column which is a TEXT..i want to specify the maximum length of the text..but i cant do TEXT(20)( ie., 20 characters max )..how can i do this?.. create table t (a text

Re: [sqlite] database column attributes

2007-12-21 Thread Samuel Gilbert
Is there a reason why you want to absolutely specify the maximum length for your text column? SQLite handles variable length text pretty well. If you want to create a column that needs to be filled in for each record, just use the "NOT NULL" keyword. See : http://www.sqlite.org/lang.html and

Re: [sqlite] extremely differing speed on :memory: queries depending on initial db size

2007-12-21 Thread Dennis Cote
[EMAIL PROTECTED] wrote: i got a question concerning in-memory-behaviour of sqlite. this is what i'm trying to do: i load an existing file db into a memory one (create a :memory:-connection, attaching the file db which has ~ 60 mb and then copying its tables and indices and detaching the

[sqlite] Re: database column attributes

2007-12-21 Thread Igor Tandetnik
arbalest06 <[EMAIL PROTECTED]> wrote: i want to create a database with a table that has a column which is a TEXT..i want to specify the maximum length of the text..but i cant do TEXT(20)( ie., 20 characters max )..how can i do this?.. create table t (a text check(length(a) <= 20)); also i

Re: [sqlite] extremely differing speed on :memory: queries depending on initial db size

2007-12-21 Thread Samuel Gilbert
Are you sure the structure on disk is the same as in memory? My initial guess is that you have some indexes that need to be updated when you execute your inserts/updates. However, if the structure is exactly the same on disk and in memory I'm left clueless. Can you provide me with a copy of

Re: [sqlite] extremely differing speed on :memory: queries depending on initial db size

2007-12-21 Thread drh
[EMAIL PROTECTED] wrote: > hi all, > > i got a question concerning in-memory-behaviour of sqlite. > > this is what i'm trying to do: > > i load an existing file db into a memory one (create a :memory:-connection, > attaching the file db which has ~ 60 mb and then copying its tables and >

[sqlite] database column attributes

2007-12-21 Thread arbalest06
good day! i want to create a database with a table that has a column which is a TEXT..i want to specify the maximum length of the text..but i cant do TEXT(20)( ie., 20 characters max )..how can i do this?.. also i would like to specify that this column should be a required field..so if the

Re: [sqlite] shared cache mode locking

2007-12-21 Thread Ed Pasma
The ticket has already been resolved, I see. So it has been considered a bug. In my earlier reply I tried to defend the current behavour to be in line with the document, http://sqlite.org/ sharedcache.html. I'm happy to change my mind now. Only I miss something in the model as described in

Re: [sqlite] table list

2007-12-21 Thread Michael Schlenker
Ged Murphy schrieb: How can I get a list of all tables programmatically in a given SQLite database? Do a SELECT on the sqlite_master table and pick the info you need. Michael - To unsubscribe, send email to [EMAIL

[sqlite] table list

2007-12-21 Thread Ged Murphy
How can I get a list of all tables programmatically in a given SQLite database? Thanks, Ged. - To unsubscribe, send email to [EMAIL PROTECTED]