Search found 2 matches

by CHERTS
22.11.2011, 04:03
Forum: SQLite
Topic: It does not work delete from
Replies: 3
Views: 1719

jeremicm wrote:You need to add condition...
delete from uin_test where uin_test.id = 1; (i guess you're deleting values by index field)
I want to delete all data from a table uin_test

I run a query

delete from uin_test;

but data is not deleted
by CHERTS
21.11.2011, 13:26
Forum: SQLite
Topic: It does not work delete from
Replies: 3
Views: 1719

It does not work delete from

hello I'm using the latest version from SVN zeoslib I want to delete all data from a table uin_test when the query: delete from uin_test where 1; from the table uin_test nothing is removed what could be wrong? I create a table like this: CREATE TABLE uin_test ( id integer primary key autoincrement n...