问题描述
- 求助!jdbc连接mysql的问题!
-
在eclipse里连接mysql数据库,启动tomcat后在console栏里显示Usage: RealmBase -a [-e ] ,并没有按照预想的显示连接成功的提示。这是怎么回事呢?
代码如下:
package Dao;import java.sql.*;
public class connection {
public static void main(String args[]) {
String url="jdbc:mysql://localhost:3306/design";
String user="root";
String password="1234";
try{
Class.forName("com.mysql.jdbc.Driver");
Connection conn=DriverManager.getConnection(url, user, password);
System.out.print("SUCCESS!");
Statement stat=conn.createStatement();
}catch(Exception e){
e.printStackTrace();
}
}
}
解决方案
这个和tomcat是无关的;你直接在eclipse运行你上面的代码就行了;
如果回答对您有帮助,请采纳;
时间: 2025-01-21 05:52:29