Query an Access database with ASP using a DSN-less connection

<%
 Dim cnnSimple  ' ADO connection
 Dim rstSimple  ' ADO recordset
 Set cnnSimple = Server.CreateObject("ADODB.Connection")
 
' DSNLess
 cnnSimple.Open ("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("\test.mdb"))
 
Set rstSimple = cnnSimple.Execute("SELECT * FROM tbltest")
 %>
 
<P> Connecting to Access with Ole connection </P>
 <table border="1">
 
<%
 Do While Not rstSimple.EOF
 %>
 
 <tr>
   <td><%= rstSimple.Fields(0).Value %></td>
   <td><%= rstSimple.Fields(1).Value %></td>
  </tr>
 
<%
 rstSimple.MoveNext
 Loop
 %>
 
</table>
 
<%
 rstSimple.Close
 Set rstSimple = Nothing
 cnnSimple.Close
 Set cnnSimple = Nothing
 %>
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

SQL server- network related or instance-specific error happened while connection establishing

  Instance-specific or network related error happening while connecting to SQL server   Please...

OleDB connection string examples

OleDB connection string examples MS Access (Jet) "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA...

Do you allow custom COM components?

Do you allow custom COM components? We are not offering to install the custom COM components...

Error when accessing a WCF services

Error when accessing a WCF services Error when accessing a WCF service: "IIS specified...

How to cache static contents to client with UseMaxAge?

You can consider to caches static contents to the client with UseMaxAge if your website has too...

Powered by WHMCompleteSolution