Re: [sqlite] problem in deleting

2006-10-12 Thread Markus Hoenicka
Narendran <[EMAIL PROTECTED]> was heard to say: > i am deleting ,it does delete. but i am trying to delete again, no error > code is returned, See http://www.sqlite.org/lang_delete.html: "If a WHERE clause is supplied, then only those rows that match the expression are removed." If no rows

Re: [sqlite] problem in deleting

2006-10-12 Thread Narendran
hi , I like to say it properly, i am deleting ,it does delete. but i am trying to delete again, no error code is returned, Narendran -- View this message in context: http://www.nabble.com/problem-in-deleting-tf2428522.html#a6771299 Sent from the SQLite mailing list archive at Nabble.com.

[sqlite] problem in deleting

2006-10-12 Thread Narendran
hi , i got a confusion in deleting a entry, sqlite> create table hai (key text primary key,value text) ; sqlite> create table hai (key text primary key,value text) ; SQL error: table hai already exists sqlite> insert into hai (key,value) values ('hai1','value1'); sqlite> insert into hai