JDBC增删改查】的更多相关文章

此篇是在上一篇的基础上使用PreparedStatement对象来实现JDBC增删改查的 具体工具类JDBCTools和实现类和配置文件在上一篇Statement对象实现的时候有写. 上一篇地址http://www.cnblogs.com/yunqing/p/6136896.html 1.增加 /** * 新建一个使用PreparedStatement的方法 * PreparedStatement与Statement的区别 * 1.不需要sql语句拼接,防止sql注入,更加安全 * 2.用占位符…
第一部分代码(实体类) package com.wf.entity; public class Hehe{ private int hehe_id; private String hehe_name; private String hehe_gender; public int getHehe_id(){ return hehe_id; } public void setHehe_id(int heheId){ hehe_id=heheId; } public String getHehe_na…
/* db.properties的配置 driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/day14 username=root password=seeker */ package cn.itcast.demo; import java.sql.Connection; import java.sql.ResultSet; import java.sql.Statement; import org.junit.Test; i…
最近开始复习以前学过的JDBC今天肝了一晚上 来睡睡回笼觉,长话短说 我们现在开始. 我们先写一个获取数据库连接的jdbc封装类 以后可以用 如果不是maven环境的话在src文件下新建一个db.properties文件 然后在改文件中写入数据库配置信息 : driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/xxxx username=root password=xxxx 然后嘞需要写一个链接数据库的工具类如下: packa…
jdbc封装 1 dao (代码分层) com.aaa.dao 存放dao相关的类型 例如 StudentDAOImpl 处理 数据库的链接 存取数据 com.aaa.servlet 存放servlet相关的类 例如:StudentServlet 处理 与浏览器交互的类 com.aaa.entity 存放实体类 例如 Student 接受数据库对象模型 com.aaa.util 存放工具类 例如 DBUtil 2 练习 模拟 servlet调用 dao 2.1 创建一个数据库表 Student(…
1.数据库配置文件jdbc.properties driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/test username=root password= 2.数据库数据类JdbcUtils package com.test; import java.io.IOException; import java.io.InputStream; import java.sql.Connection; import java.sql…
package test; import java.sql.Connection; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class CRUD { /**      * @param args      */     public static void main(String[] args) {         // TODO Auto-generat…
首先编写一个entity以便与数据库表文件相对应 lyTable.java public class LyTable implements java.io.Serializable { private Integer id; private Integer userId; private Date date; private String title; private String content; public Integer getId() { return id; } public voi…
商品表的增加,修改,删除,订单表的增加,确认,用户表的查看,日志表的增加,查看 商品表建表语句: create table TEST.GOODS_TABLE ( gid NUMBER not null, gname ), gdetails CLOB, gpicture ), gprice NUMBER, gleixing NUMBER, gpinpai ) ) tablespace USERS pctfree initrans maxtrans storage ( initial 64K nex…
1.java连接MySql数据库 代码区域: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 package com.oracle.jdbc.demo1;   import java.sql.Connection; import java.sql.DriverManager; import java.sql…