<%
String connectionURL = "jdbc:mysql://localhost:3306/database_name";
Connection connection = null;
Statement statement = null;
Class.forName("com.mysql.jdbc.Driver").newInstance();
connection = DriverManager.getConnection(connectionURL, "database_username", "database_password");
statement = connection.createStatement();
%>
Friday, June 27, 2008
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment