Changes between Version 6 and Version 7 of v6/pgsummary


Ignore:
Timestamp:
04/19/2012 04:31:33 PM (14 years ago)
Author:
huangzhong
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • v6/pgsummary

    v6 v7  
    124124}}} 
    125125 
     126* PreparedStatement中参数的占位符不能有编号 
     127{{{ 
     128String sql = "select * from ent_company where id = ?1"; 
     129PreparedStatement ps = con.prepareStatement(sql); 
     130ResultSet rs = ps.executeQuery(); 
     131执行时报错,要把?后面的数字去掉,改成 
     132String sql = "select * from ent_company where id = ?"; 
     133 
     134}}} 
     135 
    126136== 导数据 == 
    127137* 字符长度超长