ADO Name Property

Definition and Usage

The Name property can set or return a string that contains the name of the Command, Property, Field, or Parameter object.

Object Description of the Name property
Command The Name property has read/write access to the Command object.
Property The Name property has read-only access to the Property attribute.
Field The Name property has read/write access when used to create a Recordset, but it is read-only when you open an existing Recordset.
Parameter For Parameter objects not yet appended to the Parameters collection, the Name property is read/write. For appended Parameter objects and all other objects, the Name property is read-only. Names in the collection do not have to be unique.

syntax

object.Name

instance

Command အရာများ

<%
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
%>

ဖောက်လုပ်ခြင်း အရာများ

<%
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 & "
") response.write("Name:" & prop.Name & "
") response.write("Value:" & prop.Value & "
") next
rs.close conn.close set rs=nothing set conn=nothing %>