Quote:
Originally posted by rnealejr
Post your code.
|
Set Conn = CreateObject("ADODB.Connection")
Set cmd = CreateObject("ADODB.Command")
Conn.Open "FILE Name=" & Server.MapPath(Application("VirtRoot") & "dbconfig/adabas.udl")
With cmd
.ActiveConnection = Conn
.CommandType = &H0001 'adCmdText
.CommandText = "PROC DBASYS.ASP.maxentity"
.Execute
End With
NOTE: the Error occurs on the Execute Call