How do I start debugging problems related to the JDBC API?
Explain the difference between rowset vs. Resultset in jdbc?
What is JDBC Statement?
How can we set null value in jdbc preparedstatement?
What is <discriminator > in Hibernate? How exactly inheritance of Object to Tables can be done? What is the benefits of discriminator?
What is benefit of using preparedstatement in java?
Give me some example for getting connection from connection pooling in JBoss Server. Is Connection Pool default in Server or we have to create it? Who can create Connection Pool in a Team. How it will be accessed by the developer code?
What is jdbc servlet?
what is the difference between SENSITIVE and INSENSITIVE?
How can I know when I reach the last record in a table, since JDBC doesn't provide an EOF method?
Describe how the jdbc application works.
Statement, PrepareStatement and Callable all these are interfaces. Thought it is a interface how come we are creating objects and calling methods("preparestatement()") in it. In which class this method is defined. Please let me know. Thanks in advance. example: PreparedStatement pre = con.prepareStatement( "UPDATE COFFEES SET SALES = ? WHERE COF_NAME LIKE ?");
Explain about DSN?