I wish to add a record to a DB table using ASP. I know you can create a recordset and then use the AddNew method, .i.e.
rs.AddNew
rs("field"
= "some value"
rs.update
but I wish to insert records by using INSERT sql statements. I can't seem to get this to work as ASP complains saying that the query should be updatable. Is it possible to use INSERT sql statements?
rs.AddNew
rs("field"
rs.update
but I wish to insert records by using INSERT sql statements. I can't seem to get this to work as ASP complains saying that the query should be updatable. Is it possible to use INSERT sql statements?