Oracle CHAR PreparedStatement

使用动态SQL(PreparedStatement)在对Oracle的CHAR类型变量上动态设置参数时需要注意,如果不对该字段进行trim,结果可能会同预计的不同。

1. 准备数据
drop table users cascade constraints;
create table users  (
   userid             NUMBER(4)                       not null,
   username           CHAR(8)                         not null,
   password           VARCHAR2(8)                     not null,
   note               VARCHAR2(20),
   constraint PK_USERS primary key (userid)
);

insert into users(userid,username,password)values(1,'01234567','0124567');
insert into users(userid,username,password)values(2,'abcdabcd','abcdabcd');
insert into users(userid,username,password)values(3,'0123456','0123456');

select userid from users where username='0123456';
select userid from users where username=?;



2. Java程序里分别使用静态SQL和动态SQL

Right: String sql1 = "select userid from users where username='0123456'";
Wrong:String sql2 = "select userid from users where username=?";
Right: String sql2 = "select userid from users where trim(username)=?";

List useridList = dao.queryForList(sql1); 

int userid = -1;
try {
    Connection con = dao.getDataSource().getConnection();
    PreparedStatement pstmt = con.prepareStatement(sql2);
    pstmt.setString(1, "0123456");
    ResultSet rs = pstmt.executeQuery();
    
    while(rs.next()){
        userid = rs.getInt(1);
    }
    rs.close();
    pstmt.close();
    con.close();
catch(Exception e){
    //...
finally{
    //...
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值