|
|
|
ต้องการแสดงรายชื่อ Fields ใน Table และ รายชื่อ Table ใน DataBase |
|
|
|
|
|
|
|
แล้วถ้าเป็น ASP + Access ล่ะครับผม เขียนยังไง
|
|
|
|
|
Date :
วันSaturday 15 Feb 2546 เวลา 08:02:12 น. |
By :
VB_SoftMan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเข้าไป downloads Source Code ที่เป็น File Mannager ครับ รู้สึกจะมีบอกอยู่เหมือนกันครับ
|
|
|
|
|
Date :
วันMonday 17 Feb 2546 เวลา 21:17:15 น. |
By :
webmster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (ASP)
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP & Microsoft Access 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("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>
|
|
|
|
|
Date :
2009-09-29 10:25:59 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|