求sql模糊查询语句
sqlserver数据库publicArrayListselectStudent(Stringname){ArrayListlist=newArrayList();try...
sql server数据库
public ArrayList selectStudent(String name){
ArrayList list=new ArrayList();
try{
db.getConnection();
ResultSet rs=db.Query("select * from Student where username like '%%'");
while(rs.next()){
list.add(new Student(rs.getInt(1),rs.getString(2),rs.getString(3),rs.getString(4),rs.getString(5),rs.getString(6)));
}
}catch(Exception e){
e.printStackTrace();
}finally{
db.close();
}
return list;
}
这个方法带一个参数 不知道怎么把这个参数的值传到‘%%’中间 。。。
晕那个是值耶
按照你的那样 不成了查询name了。。呵呵 展开
public ArrayList selectStudent(String name){
ArrayList list=new ArrayList();
try{
db.getConnection();
ResultSet rs=db.Query("select * from Student where username like '%%'");
while(rs.next()){
list.add(new Student(rs.getInt(1),rs.getString(2),rs.getString(3),rs.getString(4),rs.getString(5),rs.getString(6)));
}
}catch(Exception e){
e.printStackTrace();
}finally{
db.close();
}
return list;
}
这个方法带一个参数 不知道怎么把这个参数的值传到‘%%’中间 。。。
晕那个是值耶
按照你的那样 不成了查询name了。。呵呵 展开
4个回答
展开全部
//java
public ArrayList selectStudent(String name){
ArrayList list=new ArrayList();
try{
db.getConnection();
ResultSet rs=db.Query("select * from Student where username like '%"+name+"%'");
while(rs.next()){
list.add(new Student(rs.getInt(1),rs.getString(2),rs.getString(3),rs.getString(4),rs.getString(5),rs.getString(6)));
}
}catch(Exception e){
e.printStackTrace();
}finally{
db.close();
}
return list;
}
public ArrayList selectStudent(String name){
ArrayList list=new ArrayList();
try{
db.getConnection();
ResultSet rs=db.Query("select * from Student where username like '%"+name+"%'");
while(rs.next()){
list.add(new Student(rs.getInt(1),rs.getString(2),rs.getString(3),rs.getString(4),rs.getString(5),rs.getString(6)));
}
}catch(Exception e){
e.printStackTrace();
}finally{
db.close();
}
return list;
}
展开全部
db.Query(@"select * from Student where username like '%"+name+"%'");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是c#么
string strCmd="select * from Student where username like '%"+name+"%'";
ResultSet rs=db.Query(strCmd);
string strCmd="select * from Student where username like '%"+name+"%'";
ResultSet rs=db.Query(strCmd);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
嘿嘿,抱歉
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询