Connection String
Hi all,
I saw a programmer use the codes below. Pay attention to the last line(3rd line) of the code. What does it all mean? Where is the Application("ConnectionString") stored or should be stored? Where do I create an Application Object? Do I create an Application object?
Thanks.
Leon
Set oConnection = Server.CreateObject("ADODB.Connection")
Set oRecordset = Server.CreateObject("ADODB.Recordset")
oConnection.Open Application("ConnectionString")
|