Viewing 4 posts - 1 through 4 (of 4 total)
I can execute the SP 1300 times using a while loop in QA w/o issue.
January 8, 2009 at 10:49 am
simple ASP:
function GetDBConnection()
dim tmp
set tmp = server.CreateObject("ADODB.Connection")
tmp.Open GetConnectionString()
set GetDBConnection = tmp
end function
function GetConnectionString()
GetConnectionString = "DSN=database;UID=username;PWD=password;"
end function
dim dbConn
set dbConn = GetDBConnection()
call dbConn.execute("exec mysp")
January 8, 2009 at 10:23 am
the "location" is a passed value indicating what id needs to be incremented. I neglected to include that that SP is being called from an ASP. If the...
January 7, 2009 at 2:06 pm
Viewing 4 posts - 1 through 4 (of 4 total)