connectiondb.java

来自「这是一个学校老师和学生的管理系统,程序比较简单,但是几乎所有功能都可以实现,如果」· Java 代码 · 共 44 行

JAVA
44
字号
/**
 *******************************************************************************
 * ConnectionDB.java
 *
 * (c) Copyright 2008 Hewlett-Packard Development Company, L.P.
 *
 *<Program Content>
 *  System Name : Students Management System
 *<Summarize>
 *  The file includes a class and the class main function is to connect the database.
 *<Update Record>
 *  2009-4-22    1.00    zhangliy
 *******************************************************************************
 */
package com.hp.eds.zhangliyuan.stuMan.util;

import java.sql.*;

/**
 * The class main function is to connect the database.
 * 
 * @author zhangliy
 * @version 1.0
 */
public class ConnectionDB {
	/**
	 * connect the database
	 * 
	 * 
	 * @return Connection
	 */
	public static Connection getConn() {
		Connection conn = null;
		String url = "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=StuMan";
		try {
			Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
			conn = DriverManager.getConnection(url, "sa", "123456");
		} catch (Exception e) {
			e.printStackTrace();
		}
		return conn;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?