DMO vs. ADO
With DMO, when you execute a SQL or stored procedure that returns data from multiple tables, it is stored in separate resultsets and you can tell how many by looking at something like '$resultref->ResultSets'... how is the same data returned when using ADODB.recordset? since you normally query using something like '$RS = $Conn->Execute($Sql)', does this one recordset contain the data from all tables (ie. all resultsets are returned via one recordset object)? or...??
any help is greatly appreciated!!
K.
[551 byte] By [
meowmeow] at [2007-11-11 9:42:03]

# 2 Re: DMO vs. ADO
thanks phil :D
just one more question... with the DMO object, you can check the status of the server agent with JobServer->Status and start it up with JobServer->Start()... any ideas on how i can accomplish this without DMO and only using a ADO connection object... or is it possible at all?