TotalIO and ParserCPUTime are all > 0.
ParserCPUTime has 2 rows > 0 and 6 rows = 0.
No. We are using Javascript server code in this example, and no prepare. This is a sample call:
Set conConnection = Server.CreateObject("ADODB.Connection")
conConnection.ConnectionTimeout = 900
conConnection.CommandTimeout=9999
str_ProductDetails = str_ProductDetails & " EXECUTE m_GetProducts_For_Maint_Screen('" & str_QuoteNumber & "', '" & str_RenewalTerm & "');"
Set rs_ProductDetails = Server.CreateObject("ADODB.RecordSet")
With rs_ProductDetails
.CursorLocation = 2
.ActiveConnection = conConnection
.Source = str_ProductDetails
.Open
End with
↧