web 2.0

How to use ASP & Access Get Field Name

How to use ASP & Access Get Field Name This is tutorial  asp developers how to using ASP get field name from a microsoft access database.

ShotDev Focus:
- ASP & MySQL Get field name from table.

Example

asp_access_list_table.asp


<% Option Explicit %>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<%
Dim Conn,strSQL,objRec,arrField
Set Conn = Server.Createobject("ADODB.Connection")
Conn.Open "DRIVER=Microsoft Access Driver (*.mdb);DBQ=" & Server.MapPath("db/mydatabase.mdb"),"" , ""
strSQL = "SELECT * FROM customer"
Set objRec = Server.CreateObject("ADODB.Recordset")
objRec.Open strSQL, Conn, 1,3
Response.write "<b>Table customer have "& objRec.Fields.Count &" Fields.</b><br>"
For Each arrField In objRec.Fields
Response.write arrField.Name & "<br>"
Next

objRec.Close()
Conn.Close()
Set objRec = Nothing
Set Conn = Nothing
%>
</body>
</html>

Create a asp file and save to path root-path/myasp/

Run
http://localhost/myasp/asp_access_list_table.asp

Screenshot

ASP & Microsoft Access (Get Table Properties)
.
.
.

Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.