Web Development
jdbc.asc
Associated article: Developing JDBC Applications
Tags: Database Web Development Tools JVM Languages Design
Source code accompanying the article by Andrew Wilson in which he examines client-side applet browsing of JDBC applets.
_The JDBC Client and Server_
by Andrew Wilson
Listing One
Driver m_JDBCDriver;
String m_JDBCUrl;
Connection m_Connection;
public boolean StartServices ()
{
try
{
m_JDBCDriver =(Driver) Class.forName
("jdbc.odbc.JdbcOdbcDriver").newInstance(); // Loads JDBC driver
if ( !m_JDBCDriver....


