Hi,
I'm just evaluating sqlite for several potential projects. I like it so far.
But, I have a question. In dao/ado the process of changing recordings is
normally something like (not code):
Recordset = "select * from table"
While( not recordset.eof )
{
Recordset.edit
Recordset.field( "blah" ) = "test"
Recordset.update
}
(sorry if my example sucks and blows but I tried to keep it as simple and as
language neutral as possible)
But in sqlite I can find no similar functions.
Is the only alternative to the ado/dao mechanism to use the "UPDATE"
statement?
Russ.