Sorry for wrong query!
I am trying to insert values into table and executing that query from
thread. There are 2 more threads that accesses same table. 
Correct query is 
Insert table SOURCEFEED (SOURCEFEED, STATUS) values ("ABC",0)

Let me know what could be reason behind this



-----Original Message-----
From: Brass Tilde [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 28, 2005 5:21 PM
To: sqlite-users@sqlite.org
Subject: Re: [sqlite] Error : Library routine called out of sequence

> I am facing one weird problem using SQLite. Many times I get an error
> "Library routine called out of sequence" while executing query "Create
table
> SOURCEFEED (SOURCEFEED,STATUS) values ( "ABC",0)" , I'm not getting the
> reason behind this. Why am I getting this error? My application is a
> multithread application and executes query from a worker thread.

Are you trying to create a table or insert values into an existing table?
I've never seen anything in SQL that suggests that you
can do what you appear to be trying to do with that query, i.e. insert rows
into a table while creating it.


Reply via email to