The following command:

SELECT * FROM colours WHERE db.colours.code = 123

produces an exception in Windows, with sqlite 2.8.12. The exception occurrs
here in EXPR.C:

static int lookupName(..)
...
   if( zDb!=0 && sqliteStrICmp(db->aDb[pTab->iDb].zName, zDb)!=0 )
#######HERE#######
  {
          continue;
   }
...

because the pointer 'db' isn't initialized.
I've create "COLOUR" table using "CREATE TABLE colours (code INTEGER primary
key, name VARCHAR(16))".

I don't know the sqlite's sources, so, I'm sending the problem to you.

Thanx for all ! (Sorry about my english, isn't very good :))
Luciano.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to