En son web geliştirme öğreticiler
 

ADO CommandText Property


<Komple Komut Nesnesi Referans

CommandText özelliği setleri veya bir SQL deyimi, bir tablo adı, göreli bir URL veya bir saklı yordam çağrısı gibi, bir sağlayıcı komutu içeren bir dize döndürür.

Sözdizimi

objcommand.CommandText

Örnek

<%
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.CommandText="orders"
response.write(comm.CommandText)

conn.close
%>

<Komple Komut Nesnesi Referans