Home > Database > Mysql Tutorial > Java 连接MySQL数据库 和连接 SQLServer2005

Java 连接MySQL数据库 和连接 SQLServer2005

WBOY
Release: 2016-06-07 15:39:26
Original
1390 people have browsed it

一、Java 连接MySQL数据库 1、首先安装MySQL数据库环境(这里不做详细介绍) 参考:本人用的是集成PHPMySQLApach 的环境 ; 2、下载MySQL数据库驱动程序 3、加载驱动程序,必须将MySQL数据库的驱动程序配置到classpath中,现在假设MySQL数据库驱动程序保存在

一、Java 连接MySQL数据库

1、首先安装MySQL数据库环境(这里不做详细介绍) 参考:本人用的是集成PHP+MySQL+Apach 的环境 ;

2、下载MySQL数据库驱动程序 

3、加载驱动程序,必须将MySQL数据库的驱动程序配置到classpath中,现在假设MySQL数据库驱动程序保存在E:\java file|\mysql-connector-java-5.1.7-bin.jar 路径中

  配置就是 .;E:\java file|\mysql-connector-java-5.1.7-bin.jar ;

4、然后新建在MySQL 数据库上新建一个数据库 test;

5、在Eclipse上新建项目  然后在建号的项目下的JRE 中右键点击“Build Path” -"Configure Build Path" 中看到MySQL数据库的驱动程序,选中加入;


/**
* MySq数据库-连接数据库
*/
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

public class ConnectionDemo2 {
	public static final String DBDRIVER = "org.gjt.mm.mysql.Driver";  //定义mysql数据库的 驱动程序
	public static final String DBURL = "jdbc:mysql://localhost:3306/test";  //定义mysql数据库的链接地址
	public static final String DBUSER ="root";  //mysql数据库的连接用户名
	public static final String DBPASS ="";     //mysql数据库的连接密码
	public static void main(String[] args){
		Connection conn =null;   //数据库连接
		try {
			Class.forName(DBDRIVER);
		}catch(ClassNotFoundException e){
			e.printStackTrace();
		}
		try{
		conn = DriverManager.getConnection(DBURL, DBUSER ,DBPASS);
		}catch (SQLException e){
			e.printStackTrace();
		}
		System.out.println(conn);
		try {
			conn.close();
		}catch (SQLException e){
			e.printStackTrace();
		}
	}
}
Copy after login


运行结果说明连接成功;Java 连接MySQL数据库 和连接 SQLServer2005


二、Java 连接SQLServer 2005数据库

1、操作系统中安装好SQL Server 2005;

2、下载SQL Server 2005驱动程序

3、设置SQL Server服务器 (这步看情况需要配置)“Microsoft SQL Server 2005”→“配置工具”→“SQL Server 配置管理器”→“SQL Server 2005 网络配置”→“MSSQLSERVER 的协议”如果“TCP/IP”没有启用,右键单击选择“启动”。双击“TCP/IP”进入属性设置,在“IP 地址”里,可以配置“IPAll”中的“TCP 端口”,默认为1433。重新启动SQL Server或者重启计算机。

4、登录连接SQL Server服务器,新建数据库,命名为OrderDB;

5、在Eclipse上新建项目  然后在建号的项目下的JRE 中右键点击“Build Path” -"Configure Build Path" 中看到SQLServer2005数据库的驱动程序,选中加入;


/**
* SQLServer 2005数据库-连接数据库
*/
import java.sql.*;   
public class text {  

	public static void main(String[] srg) {  
		String driverName = "com.microsoft.sqlserver.jdbc.SQLServerDriver";   //加载JDBC驱动  
		String dbURL = "jdbc:sqlserver://localhost:1433; DatabaseName=OrderDB";   //连接服务器和数据库sample  
		String userName = "sa";   //默认用户名  
		String userPwd = "123456";   //密码  
		Connection dbConn;  
		try {  
			Class.forName(driverName);  
			dbConn = DriverManager.getConnection(dbURL, userName, userPwd);  
			System.out.println("Connection Successful!");   //如果连接成功 控制台输出Connection Successful!  
		} catch (Exception e) {  
			e.printStackTrace();  
		}  
	}  
} 
Copy after login


运行结果说明连接成功:

Java 连接MySQL数据库 和连接 SQLServer2005


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template