com.mysql.jdbc.exceptions.MySQLSyntaxErrorException:
com.mysql.jdbc.exceptions.MySQLSyntaxErrorException:Table'orcl.users'doesn'texistpubl...
com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Table 'orcl.users' doesn't exist
public class UserDao {
public List getUserByName(String sname)
{
List userList=new ArrayList();//建立一个链表用来储存学生的信息
Connection conn=null;//连接的声明
PreparedStatement pstmt=null;//发送sql语句的对象声明
ResultSet rs=null;//处理结果的声明变量
String sql="select sname,spassword from Users where sname like '%'||?||'%' ";
//1.实例化数据库连接
conn=new DbConn().getConn();
try {
//2. 实例化pstmt对象
pstmt=conn.prepareStatement(sql);
//3.给sql语句中的占位符?赋值ֵ
pstmt.setString(1, sname);
//4.发送sql语句,获取结果集
rs=pstmt.executeQuery();
//5.从结果集中提取数据
while(rs.next()){
String name=rs.getString(1);
String pwd=rs.getString(2);
String city=rs.getString(3);
User user=new User(name,pwd,city);
userList.add(user);
}
} catch (SQLException e) {
e.printStackTrace();
System.out.println("这是第一个错误!");
}finally{
try {
if(rs!=null)
{
rs.close();
}
if(pstmt!=null)
{
pstmt.close();
}
if(conn!=null){
conn.close();
}
} catch (SQLException e) {
e.printStackTrace();
System.out.println("这是第二个错误!");
}
}
return userList;
}
以上代码的页面显示的是连接成功
问题如下图(代码为最上面的) 展开
public class UserDao {
public List getUserByName(String sname)
{
List userList=new ArrayList();//建立一个链表用来储存学生的信息
Connection conn=null;//连接的声明
PreparedStatement pstmt=null;//发送sql语句的对象声明
ResultSet rs=null;//处理结果的声明变量
String sql="select sname,spassword from Users where sname like '%'||?||'%' ";
//1.实例化数据库连接
conn=new DbConn().getConn();
try {
//2. 实例化pstmt对象
pstmt=conn.prepareStatement(sql);
//3.给sql语句中的占位符?赋值ֵ
pstmt.setString(1, sname);
//4.发送sql语句,获取结果集
rs=pstmt.executeQuery();
//5.从结果集中提取数据
while(rs.next()){
String name=rs.getString(1);
String pwd=rs.getString(2);
String city=rs.getString(3);
User user=new User(name,pwd,city);
userList.add(user);
}
} catch (SQLException e) {
e.printStackTrace();
System.out.println("这是第一个错误!");
}finally{
try {
if(rs!=null)
{
rs.close();
}
if(pstmt!=null)
{
pstmt.close();
}
if(conn!=null){
conn.close();
}
} catch (SQLException e) {
e.printStackTrace();
System.out.println("这是第二个错误!");
}
}
return userList;
}
以上代码的页面显示的是连接成功
问题如下图(代码为最上面的) 展开
1个回答
2014-01-02
展开全部
com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Table 'orcl.users' doesn't exist
String sql="select sname,spassword from Users where sname like '%'||?||'%' ";
--------------------------------------------------------------------------
数据库里没有users这个表吧?
String sql="select sname,spassword from Users where sname like '%'||?||'%' ";
--------------------------------------------------------------------------
数据库里没有users这个表吧?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询