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>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值