Whoops. Missing a space.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@79 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: UserRepository.java,v 1.4 2001/03/02 07:36:00 mdb Exp $
|
// $Id: UserRepository.java,v 1.5 2001/03/02 07:39:32 mdb Exp $
|
||||||
|
|
||||||
package com.samskivert.servlet.user;
|
package com.samskivert.servlet.user;
|
||||||
|
|
||||||
@@ -282,7 +282,7 @@ public class UserRepository extends MySQLRepository
|
|||||||
IntMap map = new IntMap();
|
IntMap map = new IntMap();
|
||||||
Statement stmt = _session.connection.createStatement();
|
Statement stmt = _session.connection.createStatement();
|
||||||
ResultSet rs = stmt.executeQuery("select userid, " + column +
|
ResultSet rs = stmt.executeQuery("select userid, " + column +
|
||||||
"from users " +
|
" from users " +
|
||||||
"where userid in (" + ids + ")");
|
"where userid in (" + ids + ")");
|
||||||
while (rs.next()) {
|
while (rs.next()) {
|
||||||
int userid = rs.getInt(1);
|
int userid = rs.getInt(1);
|
||||||
|
|||||||
Reference in New Issue
Block a user