| Home : Java : JDBC |
| Click "Subscribe" if you want to be notified of new or updated links in this category. | Subscribe |
|
|
JDBC Listings
|
|
Total:
25 | Displaying: 1 - 10 | Pages: 1 2 3 >> |
|
|
|
Installation and Preparation of MySQL Discussion and Sample Code for JDBC Programs Run the Programs Summary Complete Program Listings Preface Purpose The purpose of this lesson is to get you beyond the initial hurdles involved in: Downloading and installing a MySQL database server. Preparing that database for use with JDBC. Writing and testing your first JDBC programs to administer the database.
Updated: 04/10/2005
|
|
|
While designing an SQL intensive J2EE application for a client, I decided that I needed to streamline the bloated JDBC code required to execute SQL statements. While JDBC is a powerful, low level API for accessing and manipulating a myriad of SQL databases 1 , it is so low level that it requires: Writing verbose finally blocks to close database connections Writing catch blocks for all checked exceptions.
Updated: 04/10/2005
|
|
|
Related Reading Java Enterprise in a Nutshell, 2nd Edition By David Flanagan , Jim Farley , William Crawford Table of Contents Index Sample Chapter Read Online--Safari Editor's note: In part three of this four-part excerpt on JDBC from Java Enterprise in a Nutshell , learn about error handling, prepared statements, BLOBs and CLOBs. Handling Errors Any JDBC object that encounters an error serious enough to halt execution throws a SQLException .
Updated: 04/10/2005
|
|
|
Why Use a Wrapper? Part 1: Database Connectivity Part 2: Working with Database Schema Information Part 3: Working with Database Data Part 4: Additional Functionality Summary For More Information About the Author Given all the features of the JDBC TM API, why should any developer need the added functionality of the DBAccessor wrapper?
Updated: 04/10/2005
|
|
|
Chapter 19: Performance Related Reading Java Programming with Oracle JDBC By Donald Bales Table of Contents Index Sample Chapter Author's Article Read Online--Safari by Donald Bales This excerpt is Chapter 19 from Java Programming with Oracle JDBC , published in December 2001 by O'Reilly. Performance is usually considered an issue at the end of a development cycle when it should really be considered from the start.
Updated: 04/10/2005
|
|
|
This tutorial introduces the different concepts involved in establishing and managing a database connection from within a Java application using Java Database Connection (JDBC). It is targeted primarily at developers who want to understand what is going on under the hood when using a database from within a Java application. After a quick (2 minutes, tops) registration, you can begin the tutorial.
Updated: 04/10/2005
|
|
|
This tutorial introduces several advanced database operations, including stored procedures and advanced datatypes, that can be performed by a Java application using JDBC. After a quick (2 minutes, tops) registration, you can begin the tutorial. The tutorial should take you less than an hour to complete. You can take it online, or download a PDF or zip file of the tutorial.
Updated: 04/10/2005
|
|
|
Although much has been said about the importance of the APIs that make up Java 2 Enterprise Edition (J2EE), another Java interface that's arguably even more important has been updated with little fanfare. The latest versions of J2EE and Java 2 Standard Edition (J2SE) include support for release 3.0 of the Java Database Connectivity (JDBC) specification, which defines how Java applications communicate with relational database products.
Updated: 04/10/2005
|
|
|
In the last several months there has been a lot of excitement over JDK 1.1 features, such as RMI, Beans, the new event model, and internationalization. But according to Aaron Alpar, there has not been a whole lot of talk about the JDBC API that is now standard with the 1.1 release. And he thinks it deserves some loving attention.
Updated: 04/10/2005
|
|
|
This is the first part in a series of excerpts from O'Reilly's Java Enterprise in a Nutshell, Second Edition . These excerpts are from Chapter 2, JDBC . The full chapter is also available on oreilly.com . The JDBC API provides Java applications with mid-level access to most database systems.
Updated: 04/10/2005
|
|
|
JDBC Listings
|
|
Total:
25 | Displaying: 1 - 10 | Pages: 1 2 3 >> |
|
|