Quote: Originally Posted by pelegk1 each row and read its values!
and no just to write "update field2=1" never will work!!"
Put it into a Do while loop
Code:
Do while rs.EOF=False
'Put it your update code
'Instead of this, Why can't you use SQL commands.
For Database operations (Insert. Update, Delete * Select)
SQL is the only one best method and efficient method
rs.MoveNext
loop
|
Last edited by Shurik12; 02-14-2008 at 02:55 AM.
|