Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using prepared statements to execute mysql database queries. And I want to implement a search functionality based on a keyword of sorts.

For that I need to use LIKE keyword, that much I know. And I have also used prepared statements before, but I do not know how to use it with LIKE because from the following code where would I add the 'keyword%'?

Can I directly use it in the pstmt.setString(1, notes) as (1, notes+"%") or something like that. I see a lot of posts on this on the web but no good answer anywhere.

PreparedStatement pstmt = con.prepareStatement(
      "SELECT * FROM analysis WHERE notes like ?");
pstmt.setString(1, notes);
ResultSet rs = pstmt.executeQuery();
share|improve this question
Yes, that's it. – JB Nizet Nov 23 '11 at 19:35
1  
Welcome to StackOverflow - now you've asked a few question, you might want to review some your past ones and accept answers which helped you the most. A low accept rate can be a disincentive for other users to give good quality answers. – Paul Dixon Nov 23 '11 at 20:55
Dup of Wildcards in Java PreparedStatements – outis Apr 27 '12 at 19:48

2 Answers

up vote 17 down vote accepted

You need to set it in the value itself, not in the prepared statement SQL string.

So, this should do for a prefix-match:

PreparedStatement pstmt = con.prepareStatement(
        "SELECT * FROM analysis WHERE notes like ?");
pstmt.setString(1, notes + "%");

or a suffix-match:

pstmt.setString(1, "%" + notes);

or a global match:

pstmt.setString(1, "%" + notes + "%");
share|improve this answer
1  
+1 The OP could "set" it in the SQL — as by ... LIKE '%' || ? || '%' or similar — but that's much less flexible. – pilcrow Nov 23 '11 at 19:42
String post_match=notes+"%";
String pre_match="%"+notes;
String full="%"+notes+"%";

PreparedStatement pstmt = con.prepareStatement(
        "SELECT * FROM analysis WHERE notes like ?");

If you want prefix match

pstmt.setString(1, pre_match);

If you want postfix match

pstmt.setString(1, post_match);

Something in between means

pstmt.setString(1, full);

Try it out. It will work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.