JDBC

View: [ 2009 | 2008 | 2007 | 2006 | 2005 | 2004 | 2003 | 2002 ]

Articles
Tips
  

Articles:
  • JDBC Object Persistence: A Better Way by Sam Ragunathan   - [Clicks: 16]
    Achieve better object-relational database mapping with these easy techniques.
    http://www.fawcette.com/javapro/2002_10/online/jdbc_sragunathan_10_22_02/ - Oct, 2002
  • Create your own type 3 JDBC driver, Part 3 by Nitin Nanda, Sunil Kumar   - [Clicks: 18]
    In Parts 1 and 2 of this three-part series, you created a type 3 JDBC (Java Database Connectivity) driver, deployed it, and used it in a sample application. Beyond that, you can make the custom JWDriver more robust and improve its diagnostic capabilities by adding extra features such as SQL statement logging, connection pooling, and Predefined Data Sets (PDS).
    http://www.javaworld.com/javaworld/jw-07-2002/jw-0712-jdbcdriver3.html? - Jul, 2002
  • Create your own type 3 JDBC driver, Part 2 by Nitin Nanda, Sunil Kumar   - [Clicks: 11]
    Type 3 JDBC (Java Database Connectivity) drivers, primarily useful for Internet/intranet applications with no required client-side setting, provide flexible system administration facilities. In Part 1 of this three-part series, Sunil Kumar and Nitin Nanda explored the architecture and design of a custom-built type 3 JDBC driver. Expanding on Part 1, in this article they explain how to compile, deploy, and use the custom driver.
    http://www.javaworld.com/javaworld/jw-06-2002/jw-0614-jdbcdriver2.html? - Jun, 2002
  • Create your own type 3 JDBC driver, Part 1 by Nitin Nanda, Sunil Kumar   - [Clicks: 19]
    How would you like to create your own type 3 JDBC (Java Database Connectivity) driver or convert an existing JDBC driver to type 3? Type 3 drivers, primarily useful for Internet/intranet applications with no required client-side setting, provide flexible system administration facilities. In this article, Nitin Nanda and Sunil Kumar explain JDBC's driver architecture, outline type 3 JDBC drivers' three-tier model, and show how to create your own type 3 JDBC driver.
    http://www.javaworld.com/javaworld/jw-05-2002/jw-0517-jdbcdriver.html? - May, 2002
  • Overpower the PreparedStatement by Bob Byron, Troy Thompson   - [Clicks: 25]
    Many Java programs' success depends on an optimized method of accessing a JDBC (Java Database Connectivity) database known as a PreparedStatement. Debugging such statements can prove troublesome because you cannot retrieve a PreparedStatement's command or any of its associated parameters. In this article, Bob Byron and Troy Thompson show how to save debugging time by using a few strategic classes. Most importantly, you need to change just three lines of code.
    http://www.javaworld.com/javaworld/jw-01-2002/jw-0125-overpower.html? - Jan, 2002

[Top]

Tips:
  • Java Tip 126: Prepare cross-server database access methods with JDBC by Michael Juntao Yuan   - [Clicks: 15]
    Server-side Web applications often need to access backend databases. A set of well-designed and efficiently implemented database access methods can greatly reduce the maintenance overhead and improve your Web applications' flexibility. JDBC's (Java Database Connectivity) PreparedStatement interface and setObject() method help you implement fast, generic database access methods that can run on any database server.
    http://www.javaworld.com/javaworld/javatips/jw-javatip126.html? - Apr, 2002

[Top]