scarabatwork Posted February 19, 2007 Share Posted February 19, 2007 I have a stored procedure that creates several million rows of data when its activated. I am trying to figure out a way to execute that query from PHP and forwarding the user to the next stage without awaiting the completion of the proc. Is this possible? Thanks in advance, -S Link to comment https://forums.phpfreaks.com/topic/39188-disconnected-queries/ Share on other sites More sharing options...
AV1611 Posted February 19, 2007 Share Posted February 19, 2007 I assume the proc is run from a web page, so could you just run the page, and put in a java redirect after x sec's? kinda hokey, but might work... It would leave the page, but I don't think it will kill the script... another thought? you could have the page with 2 iframes, and run the query in on iframe, then let the person continue in the other iframe... I am making wild guesses, no knowing the page... Link to comment https://forums.phpfreaks.com/topic/39188-disconnected-queries/#findComment-188729 Share on other sites More sharing options...
tom100 Posted February 19, 2007 Share Posted February 19, 2007 Use insert delayed: http://www.usf.uni-osnabrueck.de/cgi-bin/info?(mysql)INSERT Link to comment https://forums.phpfreaks.com/topic/39188-disconnected-queries/#findComment-188732 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.