%
DIM sqlString
DIM strLastName, strFirstName
DIM strMajor, strYear
oConn.Open(sConnString) 'This opens the database.
Set rConn = oConn.Execute("SELECT * FROM Table1 ORDER BY LastName, FirstName")
%>
Record Insert
<%
'Destroy the connections
oConn.Close
set oConn = Nothing
%>