ADO ActiveConnection xingneng

kaiciwa da yongfa

ActiveConnection kwacce ake fiye da kware Command kwacce ake kula da Connection.

ActiveConnection kwacce ake fiye da kware Command kwacce ake kula da Connection. Idan an kammala koyar da ake sa ko kuma kura a kura Connection kwacce ake kula da.

Kwacce

objcommand.ActiveConnection

Tsarin

<%
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.ActiveConnection=conn
response.write(comm.ActiveConnection)
conn.close
%>