如何在PreparedStatement中更改from子句的表名

时间:2013-07-25 15:54:43

标签: java jdbc

嗨我有一个小问题,如何切换表来获得结果? 下面的代码不起作用。但是,这应该让你知道我想要做什么。 谢谢你的帮助

String typelogin=null;
if(xx){
   typelogin="users_table";
}else{
   typelogin="admin_table";
}
String sqlStr = "Select * from "+typelogin+" where username=? and userpassword=?";
PreparedStatement stmt = conn.prepareStatement(sqlStr);

完整代码:

Statement stmt = conn.createStatement();

            String sqlStr = "Select * from "+typelogin+" where username=? and userpassword=?";


            PreparedStatement pstmt=conn.prepareStatement(sqlStr);
            pstmt.setString(1,user);
            pstmt.setString(2,password);
            //step 6 Process result
            ResultSet rs = pstmt.executeQuery();

我得到的错误:

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'fromspmovy_admin where username='abc' and userpassword='abc'' at line 1

答案[解决]:

忘了放空格

from " + typelogin + " where

2 个答案:

答案 0 :(得分:3)

从您的错误消息:'fromspmovy_admin where ...看起来您错过了from和您的表名之间的空格。确保在所有方法中以正确的方式执行此操作(请注意,在当前示例中,这不会发生)。

答案 1 :(得分:0)

如果你会用?要传递变量,必须使用PreparedStatement而不是Statement。另外根据您的错误消息,您需要在(从checkmmovy_admin)

之后添加一个空格