IT源码网

java连接数据库(sqlserver和mysql)

developer 2021年02月13日 编程语言 439 0

java连接sqlserver数据库

废话不多说,直接看代码:

public static void main(String[] args) { 
        // TODO Auto-generated method stub 
            String    DBDRIVER="com.microsoft.sqlserver.jdbc.SQLServerDriver"; 
            String    DBURL="jdbc:sqlserver://localhost:1433;databasename=test"; 
            String    DBUID="sa"; 
            String    DBPWD="123456"; 
             Connection con = null;         
             try { 
                Class.forName(DBDRIVER); 
                con=DriverManager.getConnection(DBURL,DBUID,DBPWD); 
                System.out.println(con); 
                 
            } catch (ClassNotFoundException e) { 
                // TODO Auto-generated catch block 
                e.printStackTrace(); 
            }catch (SQLException e) { 
                // TODO Auto-generated catch block 
                e.printStackTrace(); 
            } 
             
    }

需要把驱动放到WebContent->WEB-INF->lib中

所需要的驱动如图:

数据库驱动链接放下面

java连接mysql数据库

废话不多说,直接看代码:

public static void main(String[] args) { 
        // TODO Auto-generated method stub 
            String    DBDRIVER="com.mysql.jdbc.Driver"; 
            String    DBURL="jdbc:mysql://localhost:3306/[数据库名称]"; 
            String    DBUID="sa"; 
            String    DBPWD="123456"; 
             Connection con = null;         
             try { 
                Class.forName(DBDRIVER); 
                con=DriverManager.getConnection(DBURL,DBUID,DBPWD); 
                System.out.println(con); 
                 
            } catch (ClassNotFoundException e) { 
                // TODO Auto-generated catch block 
                e.printStackTrace(); 
            }catch (SQLException e) { 
                // TODO Auto-generated catch block 
                e.printStackTrace(); 
            } 
             
    }

需要把驱动放到WebContent->WEB-INF->lib中

所需要的驱动如图:

 

 

所需要的驱动下载链接:https://pan.baidu.com/s/133JWDKLLSfn13WYWnZnDaw

评论关闭
IT源码网

微信公众号号:IT虾米 (左侧二维码扫一扫)欢迎添加!