InterviewSolution
Saved Bookmarks
| 1. |
Can I Get Information About A Resultset's Associated Statement And Connection In A Method Without Having Or Adding Specific Arguments For The Statement And Connection? |
|
Answer» YES. USE ResultSet.getStatement(). From the RESULTING STATEMENT you can use Statement.getConnection(). Yes. Use ResultSet.getStatement(). From the resulting Statement you can use Statement.getConnection(). |
|