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
Hooking Up To A Database Using Servlets
In the first part of this article, I did not present any installation procedures and I felt that I left you in the cold. Therefore, I will do it here. Please keep in mind that the program presented here in not very difficult and if you cannot connect to the database, it is probably because of your setup.
Building an E-mail Address Database
E-mail marketing works, there’s no denying it. Its key advantage over other Internet marketing methods is that it enables you to contact the customer instead of forcing the customer to contact you. This ability is especially useful when something that your customers need to know as soon as possible has happened. Whether you’ve just released a new product or decided to cut your prices by 10%, the fastest way to spread the word is via E-mail.
However, unless you want to give your company a bad name, you can’t simply start sending E-mails to people that haven’t agreed to receive them. The only ethical and reasonable way to advertise via E-mail is to first obtain a permission, or an opt-in request, from the receiver. The trouble is that this can’t be done via E-mail, as it would be similar to asking someone whether you can ask them a question. What’s the point in doing that, when you’ve already done what you wanted them to allow you to do?
Connecting to a Database in a Visual C++ Application
Learn to connect a Visual C++ application to a database easily. Step-by-step guide to set up, query, and manage your data connection.