After we finish using resultset, normally i will do the following:
if(rs != null)
rs.close(); rs = null;
What i want to ask is, by setting resultset = null like the following:
if(rs != null)
rs = null;
Does it equals to setting rs.close()
? Is there any chance that maximum cursor still occur?