I want to query SimpleDB by using the SelectRequest. Here is my code:
String id = String.valueOf(request.getParameter("userid"));
SelectRequest request1 = new SelectRequest(
"select * from Member where Account =" +id,
true
);
but it doesn't work.
I have no idea how to solve this problem. Please give me some advice.