60 lines
1.5 KiB
Plaintext
60 lines
1.5 KiB
Plaintext
<%@ LANGUAGE = JScript %>
|
|
<% Response.Expires= -1 %>
|
|
<!--METADATA TYPE="typelib"
|
|
uuid="00000206-0000-0010-8000-00AA006D2EA4" -->
|
|
|
|
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>Add/Delete Database Sample</TITLE>
|
|
</HEAD>
|
|
|
|
<BODY BGCOLOR="White" topmargin="10" leftmargin="10">
|
|
|
|
<!-- Display Header -->
|
|
|
|
<font size="4" face="Arial, Helvetica">
|
|
<b>Add/Delete Database Sample</b></font><br>
|
|
|
|
<hr size="1" color="#000000">
|
|
|
|
|
|
<%
|
|
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("<p>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("<p>Deleted Author: Paul Enfield, 1967");
|
|
%>
|
|
</BODY>
|
|
</HTML>
|