最新的Web開發教程
 

ADO Name Property


<完整參數對象參考

Name屬性設置或返回一個包含命令,屬性,字段或參數對象的名稱的字符串。

目的 Name屬性的說明
命令 name屬性Connection對象的讀/寫權限
屬性 Name屬性有只讀權限的屬性對象
領域

用於創建一個記錄集時,Name屬性具有讀/寫權限,但它具有只讀權限,當您打開一個現有記錄

參數 Name屬性已讀未添加到參數集合Parameter對象上/寫權限,但它具有只讀權限的對象被添加到集合後

句法

object.Name

例如 - 對於命令對象

<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"

set comm=Server.CreateObject("ADODB.Command")
comm.Name="xx"
response.write(comm.Name)

conn.close
%>

例如 - 對於Field對象

<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"

set rs = Server.CreateObject("ADODB.Recordset")
rs.open "Select * from orders", conn

set f=Server.CreateObject("ADODB.Field")

'Display the field attributes of the Orders Table
for each f in rs.Fields
  response.write("Attr:" & f.Attributes & "<br>")
  response.write("Name:" & f.Name & "<br>")
  response.write("Value:" & f.Value & "<br>")
next

rs.Close
conn.close
set rs=nothing
set conn=nothing
%>

示例 - 一個屬性對象

<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"

set rs = Server.CreateObject("ADODB.Recordset")
rs.open "Select * from orders", conn

set prop=Server.CreateObject("ADODB.Property")

'Display the property attributes of the Orders Table
for each prop in rs.Properties
  response.write("Attr:" & prop.Attributes & "<br>")
  response.write("Name:" & prop.Name & "<br>")
  response.write("Value:" & prop.Value & "<br>")
next

rs.close
conn.close
set rs=nothing
set conn=nothing
%>

<完整參數對象參考