I provide the article just follow the steps:
Step 1 - Creating a MySQL database
Log into the Mysql, Enter a database username and password of your choice, the database name will be your username with "db" appended to it, so if you created a database called "amazon" your database name would be "amazondb".
Step 2 - Connecting to MySQL using JSP and JDBC
Once you've successfully created your database can you connect to it using JSP via JDBC using the following connection example. Change the connection parameters in red to the ones you've chosen in Step 1.
<%@ page import="java.sql.*"%>
<html>
<head>
<title>JDBC Connection example</title>
</head>
<body>
<h1>JDBC Connection example</h1>
<%
java.sql.Connection cn;
Class.forName("org.gjt.mm.mysql.Driver");
cn = DriverManager.getConnection("jdbc:mysql://localhost:3306/database_name", "database_username", "database_password");
%>
</body>
</html>
Note: No matter what os u r using. Just install Mysql for linux and web browser may be Firefox / safari
Hope u get the answer.
Last Wiki Answer Submitted: October 12, 2010 7:09 am by Subhendu Sen22,035 pts.
All Answer Wiki Contributors: Subhendu Sen22,035 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.