在XAMPP中将JSP连接到MySql

时间:2013-01-12 01:41:26

标签: mysql database jsp

我的示例代码在这里:

<%@ page import="java.sql.*" %> 
<%@ page import="java.io.*" %> 

<% 
/* Create string of connection url within specified format with machine name, port number and database name. Here machine name id localhost and database name is usermaster. */ 
String connectionURL = "jdbc:mysql://localhost/ekoh"; 

// declare a connection by using Connection interface 
Connection connection = null; 

// Load JBBC driver "com.mysql.jdbc.Driver"
Class.forName("com.mysql.jdbc.Driver").newInstance(); 

/* Create a connection by using getConnection() method that takes parameters of string type connection url, user name and password to connect to database. */ 
connection = DriverManager.getConnection(connectionURL, "root", "");

// check weather connection is established or not by isClosed() method 
if(!connection.isClosed())
%>
<font size="+3" color="green"></b>
<% 
out.println("Successfully connected to " + "MySQL server using TCP/IP...");
connection.close();
}
catch(Exception ex){
%>
</font>
<font size="+3" color="red"></b>
<%
out.println("Unable to connect to database.");
}
%>

我的数据库名称是“ekoh”,我使用root帐号,没有密码.. 仍然没有任何线索,为什么它仍然没有工作到现在..你能给我一些替代代码运行? :) 注:我在XAMPP中使用tomcat和MySql编写JSP。

1 个答案:

答案 0 :(得分:0)

需要做的是download the MySQL connector jar file,然后将其放在项目文件夹的文件夹路径/WEB-INF/lib中。