博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MyEclipse------如何连接MySQL
阅读量:6847 次
发布时间:2019-06-26

本文共 1238 字,大约阅读时间需要 4 分钟。

testconnection.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%    String path = request.getContextPath();    String basePath = request.getScheme() + "://"            + request.getServerName() + ":" + request.getServerPort()            + path + "/";%><%@ page import="java.sql.*" %>My JSP 'testconnection.jsp' starting page    <%        //student为数据库名字,加上useSSL=true不然报错        //localhost:3360在MySQL GUI tools里面的MySQLAdministrator.exe里面设置        String url="jdbc:mysql://localhost:3306/student?useSSL=true";        String useName="root";        String password="2277092";        Connection conn=null;        try{            Class.forName("com.mysql.jdbc.Driver");        }        catch(ClassNotFoundException e){            out.print("加载驱动器类出现异常");        }        try{            conn=null;            conn=DriverManager.getConnection(url,useName,password);        }        catch(SQLException e){            out.print("连接数据库的过程中出现SQL异常");        }        if(conn==null){            out.print("连接数据库失败");        }        else{            out.print("连接数据库成功");        }        try{            conn.close();        }        catch(SQLException e){            out.print("关闭数据库连接时出现SQL异常");        }             %>

 

转载地址:http://geoul.baihongyu.com/

你可能感兴趣的文章