首页 > 编程知识 正文

从jsp页面中连接数据库并进行相关操作增删查改(jsp中连接数据库的方法)

时间:2023-12-03 11:56:30 阅读:311820 作者:XPGG

本文目录一览:

  • 1、jsp怎么连接数据库做增删改查
  • 2、serlet jsp连接数据库怎么增删改查
  • 3、jsp和数据库(sqlserver)连接后,系统进行增删改查,这些操作是怎么实现的,详细具体点拜托
  • 4、如何在JSP页面中实现对数据库的增删查改?

jsp怎么连接数据库做增删改查

数据库连接类:

package cn.hpu.bbs.util;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.sql.Statement;

public class DB {

 

 // 定义MySQL的数据库驱动程序

 public static final String DBDRIVER = "com.mysql.jdbc.Driver" ;

 //定义mysql的数据库连接地址:

 public static final String DBDURL = "jdbc:mysql://localhost/bbs2014" ;

 //mysql数据库的连接用户名

 public static final String DBUSER = "root" ;

 //mysql数据库的连接密码

 public static final String DBPASS = "1234" ;

 

 public static Connection createConn(){

  Connection conn =null;

  try {

   Class.forName(DBDRIVER);

   conn=DriverManager.getConnection(DBDURL,DBUSER,DBPASS);

  } catch (ClassNotFoundException e) {

   e.printStackTrace();

  } catch (SQLException e) {

   e.printStackTrace();

  }

  

  return conn;

 }

 

 public static PreparedStatement prepare(Connection conn,String sql){

  PreparedStatement ps=null;

  try {

   ps=conn.prepareStatement(sql);

  } catch (SQLException e) {

   // TODO Auto-generated catch block

   e.printStackTrace();

  }

  return ps;

 }

 

 public static void close(Connection conn){

  if(conn==null) return;

  try {

   conn.close();

   conn=null;

  } catch (SQLException e) {

   // TODO Auto-generated catch block

   e.printStackTrace();

  }

 }

 

 public static void close(Statement stmt){

  if(stmt==null) return;

  try {

   stmt.close();

   stmt=null;

  } catch (SQLException e) {

   // TODO Auto-generated catch block

   e.printStackTrace();

  }

 }

 

 public static void close(ResultSet rs){

  if(rs==null) return;

  try {

   rs.close();

   rs=null;

  } catch (SQLException e) {

   // TODO Auto-generated catch block

   e.printStackTrace();

  }

 }

}

Category的一个JavaBean:

package cn.hpu.bbs.model;

public class Category {

private int id;

private String name;

private String description;

public int getId() {

return id;

}

public void setId(int id) {

this.id = id;

}

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public String getDescription() {

return description;

}

public void setDescription(String description) {

this.description = description;

}

}

对数据库和Category的操作类://说白了就是增删查修

pre name="code" class="java"package cn.hpu.bbs.service;

import java.sql.Connection;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.ArrayList;

import java.util.List;

import cn.hpu.bbs.model.Category;

import cn.hpu.bbs.util.DB;

public class CategoryService {

public void add(Category c){

Connection conn=DB.createConn();

String sql="insert into category (name,description) values (?,?)";

PreparedStatement ps=DB.prepare(conn, sql);

try {

ps.setString(1, c.getName());

ps.setString(2, c.getDescription());

ps.executeUpdate();

} catch (SQLException e) {

e.printStackTrace();

}

DB.close(ps);

DB.close(conn);

}

public ListCategory list(){

Connection conn=DB.createConn();

String sql="select * from category";

PreparedStatement ps=DB.prepare(conn, sql);

ListCategory categories=new ArrayListCategory();

try {

ResultSet rs=ps.executeQuery();

Category c=null;

while(rs.next()){

c=new Category();

c.setId(rs.getInt("id"));

c.setName(rs.getString("name"));

c.setDescription(rs.getString("description"));

categories.add(c);

}

} catch (SQLException e) {

e.printStackTrace();

}

DB.close(ps);

DB.close(conn);

return categories;

}

public void delete(Category c){

deleteById(c.getId());

}

public void deleteById(int id){

Connection conn=DB.createConn();

String sql="delete from category where id=?";

PreparedStatement ps=DB.prepare(conn, sql);

try {

ps.setInt(1, id);

ps.executeUpdate();

} catch (SQLException e) {

e.printStackTrace();

}

DB.close(ps);

DB.close(conn);

}

public void update(Category c){

Connection conn=DB.createConn();

String sql="update category set name = ? , description = ? where id = ?";

PreparedStatement ps=DB.prepare(conn, sql);

try {

ps.setString(1, c.getName());

ps.setString(2, c.getDescription());

ps.setInt(3, c.getId());

ps.executeUpdate();

} catch (SQLException e) {

e.printStackTrace();

}

DB.close(ps);

DB.close(conn);

}

public Category loadById(int id){

Connection conn=DB.createConn();

String sql="select * from category where id=?";

PreparedStatement ps=DB.prepare(conn, sql);

Category c=null;

try {

ps.setInt(1, id);

ResultSet rs=ps.executeQuery();

if(rs.next()){

c=new Category();

c.setId(rs.getInt("id"));

c.setName(rs.getString("name"));

c.setDescription(rs.getString("description"));

}

} catch (SQLException e) {

e.printStackTrace();

}

DB.close(ps);

DB.close(conn);

return c;

}

}

serlet jsp连接数据库怎么增删改查

建议使用MVC模式做,JSP页面提交相应的操作后,提交给Servlet,Servlet中调用Model中定义的增删改查方法,方法调用后返回结果,然后通过Servlet返回给JSP页面。对于前台的增删改查跟数据库中中新建查询的操作是一样的,只是JSP页面增删改查是调用数据库查询语句封装的函数方法而已!

jsp和数据库(sqlserver)连接后,系统进行增删改查,这些操作是怎么实现的,详细具体点拜托

建议使用MVC模式做,JSP页面提交相应的操作后,提交给Servlet,Servlet中调用Model中定义的增删改查方法,方法调用后返回结果,然后通过Servlet返回给JSP页面。对于前台的增删改查跟数据库中中新建查询的操作是一样的,只是JSP页面增删改查是调用数据库查询语句封装的函数方法而已!

如何在JSP页面中实现对数据库的增删查改?

首先我觉得你的问题不太明确,做增删改查,的话一般不用ajax,除非其中要用到单独的验证字段的时候采用,比如在注册时验证用户名,这里用到ajax查询用户名是否存在,返回给页面直接用流打回页面就行(比如:此用户名可用之类的)而其他的查询比如显示所有或者查询的结果为对象的话那看你用什么框架(controller),struts直接封装到值栈中,在页面用标签显示就行,不知道能不能帮到你

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。