Hi I just want to ask why I receive an error from

VB Code:
  1. rs.open "Insert Into Table (a,b,c) values ('a','b','c')",con
  2. rs.close:set rs=nothing

but not from

VB Code:
  1. rs.open "Select * from table",con
  2. rs.addnew
  3. rs.update
  4. rs.close:set rs=nothing

The error is "Function is not allowed when object is closed" ..... thanks in advance