i.e.:
- Use
dbSendQuery() to get a result set
- Optionally bind paremeters with
dbBind().
- Use
dbFetch() to get a page of results
- Use
dbHasCompleted() to tell when you're done
- Use
dbClearResult() to clean up
And it might be worth linking all these functions together with a common family.
i.e.:
dbSendQuery()to get a result setdbBind().dbFetch()to get a page of resultsdbHasCompleted()to tell when you're donedbClearResult()to clean upAnd it might be worth linking all these functions together with a common family.