Friday, June 27, 2008

How to connect mysql from jsp(Java Server Page)?

<%
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();

%>

No comments: