I am unsure whether a statement and resultset should be closed after each query or after all my queries have been made (ie at the same time i close the connection)?
Correct me if I'm wrong, but I'm pretty sure both work?
However, would the database eventually crash if I didn't close a statement after each query and then performed a lot of queries?
On the other hand, would it be inefficient and time-wasting to keep closing & creating statements for every query?
I've read up a lot on this problem before asking this question, but I'm still uncertain. Any help appreciated,
tre.