当前位置: 技术问答>java相关
求救:如何向preparedStatement中set值?sql语句中包含like
来源: 互联网 发布时间:2015-02-05
本文导语: 例如: String sql= null; sql = select name,age from usertable where name like '%' || ? || '%'; Connection con = DriverManager.getConnection(url, userid, password); PreparedStatement stmt = con.prepareStatement(sql); stmt.setString(1,'li'); 用DB2时,运行...
例如:
String sql= null;
sql = select name,age from usertable where name like '%' || ? || '%';
Connection con = DriverManager.getConnection(url, userid, password);
PreparedStatement stmt = con.prepareStatement(sql);
stmt.setString(1,'li');
用DB2时,运行正常,用sybase数据库时,出现如下异常:
com.sybase.jdbc2.jdbc.SybSQLException: Incorrect syntax near '|'.
请问如何解决?谢谢。
String sql= null;
sql = select name,age from usertable where name like '%' || ? || '%';
Connection con = DriverManager.getConnection(url, userid, password);
PreparedStatement stmt = con.prepareStatement(sql);
stmt.setString(1,'li');
用DB2时,运行正常,用sybase数据库时,出现如下异常:
com.sybase.jdbc2.jdbc.SybSQLException: Incorrect syntax near '|'.
请问如何解决?谢谢。
|
String sql= null;
sql = "select name,age from usertable where name like ?";
Connection con = DriverManager.getConnection(url, userid, password);
PreparedStatement stmt = con.prepareStatement(sql);
stmt.setString(1,"%"+li+"%");
sql = "select name,age from usertable where name like ?";
Connection con = DriverManager.getConnection(url, userid, password);
PreparedStatement stmt = con.prepareStatement(sql);
stmt.setString(1,"%"+li+"%");
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。