I'm in the process of trying to migrate that ASP code to adTempus 2.x, but I'm having difficulty understanding the API documentation. Because I am not a programmer, I get lost in all the object/interfaces/classes jargon.
I don't quite understand what the arguments are for the GetObjectsWhere method. From the doc it appears I should be using "IObjectRequestFilter", but I can't figure out how the doc of that "interface" translates into ASP/vbscript:
set objADTempus = CreateObject("ADTempus.Application")
set objScheduler = objADTempus.Connect("","")
set objJob = objScheduler.GetObjectsWhere("SELECT * from job where name=bogus_name", 0, true)
This ends with a "Type mismatch: 'GetObjectsWhere'" error.
Can someone please provide me with simple ASP/vbscript code which will allow me to select a particular job based on the known job name?