This Group lets to place the queries related to JAVA (J2EE).
Managed by Santosh author of JDBC, Servlets and JSP BlackBook.
The JDBC, Servlets, and JSP BlackBook is a unique book for self learning and getting expertization in Java database and web technologies as JDBC, Servlet, JSP, JSTL and JSF. This book is not only useful for self updating readers but for the readers who already known the concepts and want to get more in-dept knowledge on the topics this book is titled. This book gives complete information on the JDBC, Servlet, JSP and JSTL technologies and even makes it simple to learn. The detail explanation of each concept with independent examples and then explaining the various situations to apply the concept makes this book unique, helps you to understand the concepts clearly and further makes you to apply the concepts properly in the appropriate situations of your application development.
The DriverManager.getConnection() method uses Driver.acceptUrl() method for identifying the Driver (registered with DriverManager) to use for creating a
If my JDBC code is something like this: // Using Class.forname multiple times Class.forName("oracle.jdbc.driver.OracleDriver"); Class.forName("Some other
I guess, it's not good approach to allow the user to submit the form and handle the same at the server level. This can be handled at the client level itself.