Marketing and selling are hard things to do deliberately. We all do it all the time unconsciously, but to actually ask for money is often difficult for those not used to it.
Database Programming With Java + JDBC: Part 3/4
Our Address Book App (contd.)
Database Programming With Java + JDBC: Part 2/4
Before We Start Coding
Database Programming With Java + JDBC
Interacting with a database is a routine job in the application world. Quite often you need to store information in the database, fetch it to generate some form of report and update or delete it as required. Java provides the JDBC (Java Database Connectivity) API for executing SQL statements. JDBC, being Java-based, leverages the benefits of the language and provides a convenient way to communicate with different databases, such as Oracle, Informix, Sybase, etc.
Database Programming With Java + JDBC: Part 1/4
Introduction
Database Programming With Java + JDBC: Part 4/4
The Sample Code… Explained