JSP基础:连接mysql并创建表

一. 首先需要连接数据库的jar包

       这里贴上我用的jar包的百度云链接:https://pan.baidu.com/s/127gYYpCTCxlI1Mn_W7FR0A  密码:7cy4

二.将jar包放在tomcat下的lib中

      mac下的tomcat参考下面:   /Users/username/Library/ApacheTomcat/lib

三.创建jsp项目

      在这一部分就可以在index.jsp 中链接数据库了

      下面附上参考代码:

<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8"%>
<%@page import="java.sql.DriverManager"%>
<%@page import="java.sql.Connection"%>
<%@ page import="java.sql.Statement" %>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>jsp连接数据库</title>
</head>
<body>
<%!
  //定义数据库连接对象
  public static final String driver = "com.mysql.jdbc.Driver";
  //定义数据库地址
  public static final String url="jdbc:mysql://localhost:3306/数据库名";
  public static final String username = "root";
  public static final String password ="123456"; //改成自己的root密码
%>

<%
  Connection conn = null;

%>
<%

  try{
    Class.forName(driver);//记载数据库驱动,注册到驱动管理器

    conn=DriverManager.getConnection(url,username,password);
    if(conn!=null){
      out.println("数据库连接成功!!!");
    }else{
      out.println("数据库连接失败!!!");
    }
    Statement statement = conn.createStatement();
    String sql =  "create table test(id int)";
    int rs = statement.executeUpdate(sql);
    statement.close();
    conn.close();
  }catch(ClassNotFoundException e){
    e.printStackTrace();
  }


%>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/qq_37866486/article/details/83017852