vote up 0 vote down star

I have a search class that keeps prepared PDO statements around for re-execution with new parameters each time the search is run. A conflict occurs if a second search is run while a previous search still has a result set open and is returning results. What I'd like to do in this case is simply create and execute a new statement rather than reusing the open one.

Is there a way to determine if PDOStatement has had closeCursor() called on it or that all records have been fetched?

Alternatively, how can I determine if more results are available in a PDOStatement without advancing past the next result?

flag

Is there a reason why you can't simply call closeCursor(), regardless of whether or not there are still results pending? – Inshallah Oct 22 at 17:26
I'd like to keep returning results from the fist cursor, so I don't want to close it. – Adam Franco Oct 22 at 17:41
Have a look at the answer to this question, it might be the kind of thing you are looking for: stackoverflow.com/questions/531536/… – Inshallah Oct 22 at 21:17

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.