黑马程序员技术交流社区
标题:
MyEclipse怎样连接Mysql
[打印本页]
作者:
陆建平
时间:
2012-6-1 23:00
标题:
MyEclipse怎样连接Mysql
我电脑装了MyEclipse,怎样用它连接Mysql?
作者:
古银平
时间:
2012-6-1 23:19
MyEclipse连接数据库是非常重要的下面我就讲解一下MyEclipse连接MySQL的方法,首先我们打开MyEclipse在工具栏上依次点击Window-->Open Perspective-->MyEclipse Database Explorer,在新弹出的窗口里我们在Driver template下拉框中选择MySQL Connector/J,在Driver name随便起个名字,Coonection URL填上数据库地址(最后那个test是你要连接的数据库)User name,Password依次填上用户名,密码,点击Driver JARs右面的Add JARs选择你的数据库驱动,然后点击Finish。这时我们在左面会看到新建的数据库,我们右键点击新建的数据库选择Open connection...。出现一个新窗口我们输入刚才的用户名,密码,点击OK,这时我们能看到在数据库中建的表,说明已经连接成功。
作者:
杜俊彪
时间:
2012-6-1 23:20
配置MyEclipse的链接环境:window-open perspection-MyEclipse database exp...新建一个链接,url处:jdbc:MySQL:(MySQL数据库链接),username和password是登录数据库的(不要弄错了).在finish前可以尝试链接,链接成功-finish.链接失败注意看提示,一般是url的错误,多多尝试.我用apmserv的url是jdbc:MySQL:127.0.0.1/(数据库名)
之后在新建的web工程下,在WEB-INF\lib中improt-general-file system-选择MySQL-connector-java-5.0.3-bin.jar所在的文件夹-finish
使用下面的代码,可以测试链接,注意更改使用的数据库名,数据等
JDBCHelloWorld.java
import java.sql.SQLException;
/**
* 第一个 JDBC 的 HelloWorld 程序, 数据库访问 MySQL.
*/
public class JDBCHelloWorld {
/**
* @param args
* @throws SQLException
*/
public static void main(String[] args) throws SQLException {
// 1. 注册驱动
try {
Class.forName("com.MySQL.jdbc.Driver");
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}// MySQL 的驱动
// 2. 获取数据库的连接
java.sql.Connection conn = java.sql.DriverManager.getConnection(
"jdbc:MySQL://localhost/test?useUnicode=true&characterEncoding=GBK", "root", null);
// 3. 获取表达式
java.sql.Statement stmt = conn.createStatement();
// 4. 执行 SQL
java.sql.ResultSet rs = stmt.executeQuery("select * from user");
// 5. 显示结果集里面的数据
while(rs.next()) {
System.out.println(rs.getInt(1));
System.out.println(rs.getString("username"));
System.out.println(rs.getString("password"));
System.out.println();
}
// 6. 释放资源
rs.close();
stmt.close();
conn.close();
}
}
复制代码
作者:
何拴绪
时间:
2012-6-1 23:33
楼主可以参考我自己写的一段代码
首先要启动Mysql并建立数据库和相应的表,如我建立的mydata数据库和dept表
代码如下:
import java.sql.*;
public class TestMysqlConnection {
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
Class.forName("com.mysql.jdbc.Driver");
//连接的数据库为mydata,mysql的用户名为root,密码为1234567
conn = DriverManager.getConnection("jdbc:mysql://localhost/mydata?"
+ "user=root&password=1234567");
stmt = conn.createStatement();
rs = stmt.executeQuery("select * from dept");//执行查询语句
while (rs.next()) {
System.out.println(rs.getString("dname"));//打印dept表中的dname字段
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException ex) {
System.out.println("SQLException: " + ex.getMessage());
System.out.println("SQLState: " + ex.getSQLState());
System.out.println("VendorError: " + ex.getErrorCode());
} finally {
try {
if (rs != null) {
rs.close();
rs = null;
}
if (stmt != null) {
stmt.close();
stmt = null;
}
if (conn != null) {
conn.close();
conn = null;
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
复制代码
作者:
右眼会动的人
时间:
2012-6-2 11:30
楼上正解
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2