欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

eclipse-求助!jdbc连接mysql的问题!

程序员文章站 2022-05-21 09:54:07
...
mysqleclipse数据库

在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();
}
}
}