InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Client And Server Database Cursors? |
|
Answer» What you SEE on the CLIENT side is the current ROW of the cursor which CALLED a Result (ODBC) or ResultSet (JDBC). The cursor is a server-side entity only and remains on the server side. What you see on the client side is the current row of the cursor which called a Result (ODBC) or ResultSet (JDBC). The cursor is a server-side entity only and remains on the server side. |
|