Do either of these methods offer better performance over the other?
ADO:
rs.addnew
rs("field1" = value
rs("field2" = value
rs.update
SQL:
mySQL="INSERT INTO myTable......."
conn.excute mySQL
Is it better to use one over the other in certain circumstances?
ADO:
rs.addnew
rs("field1" = value
rs("field2" = value
rs.update
SQL:
mySQL="INSERT INTO myTable......."
conn.excute mySQL
Is it better to use one over the other in certain circumstances?