<%@ LANGUAGE = JScript %> <% Response.Expires= -1 %> Add/Delete Database Sample Add/Delete Database Sample

<% var oConn; var oRs; var filePath; // Map authors database to physical path filePath = Server.MapPath("authors.mdb"); // Create ADO Connection Component to connect // with sample database oConn = Server.CreateObject("ADODB.Connection"); oConn.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" +filePath); // to add and delete recordset, it is recommended to use //direct SQL statement instead of ADO methods. oConn.Execute ("insert into authors (author, YearBorn) values ('Paul Enfield', 1967)"); // Output Result oRs = oConn.Execute ( " Select * from authors where Author= 'Paul Enfield' and YearBorn =1967 " ); Response.Write("

Inserted Author: "+oRs("Author")+"," + oRs("YearBorn")); // Delete inserted record oConn.Execute ( " Delete from Authors where author='Paul Enfield' and YearBorn = 1967" ); // Output Status Result Response.Write("

Deleted Author: Paul Enfield, 1967"); %>