jsp+mysql实现增加,查看功能

准备工作:

(1)创建并使用数据库:create database student;   use test;

(2)创建表:create table  ppp(sno char(7),sname  char(8));

(3)插入一条数据:insert   into   ppp  values(123,456);

(4)显示数据:select*from ppp;(复习一下数据库知识)

开始:

(1)打开Myeclipse. 新建web  project.(Mysql)  并在WebRoot建立一个Second.jsp

(2)在index.jsp中填写入代码:

     
   


         用户名:
         密    码:
         
   

 


(3)在Second.jsp中填写如下代码:

 
 <%
  Connection conn = null ;
   String driver="com.mysql.jdbc.Driver";//数据库驱动
   String userName="root";//数据库用户名
   String userPassword="123";//数据库密码
   String dbName="student";//数据库名
   String tableName="ppp";//表名
   String url = "jdbc:mysql://localhost/" + dbName + "?user=" + userName + "&password=" + userPassword;
   Class.forName("com.mysql.jdbc.Driver").newInstance();  
   conn = DriverManager.getConnection(url);
   String  name=request.getParameter("name");//获取表单数据
   String   password=request.getParameter("password");
   out.println(name);//测试表单数据是否传出来
    Statement stmt = conn.createStatement(); 
    stmt.executeQuery("SET NAMES UTF8"); 
    String sql = "insert into ppp values('"+name+"','"+password+"')";
      try{
           stmt.execute(sql);
        }
      catch(Exception e){ }
stmt.close();  
conn.close();  
  %>

(4)程序流程图:

输入数据:444    555jsp+mysql实现增加,查看功能_第1张图片

Second.jsp显示:jsp+mysql实现增加,查看功能_第2张图片

数据库显示:jsp+mysql实现增加,查看功能_第3张图片

(5)如图:444  555已经加入到数据库了。只有基础学好了,才能学习更好的。不然你怎么知道那个更好,的有比较



你可能感兴趣的:(java,EE)