Using “like” wildcard in prepared statement

Multi tool use
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();
java mysql jdbc prepared-statement
add a comment |
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();
java mysql jdbc prepared-statement
add a comment |
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();
java mysql jdbc prepared-statement
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();
java mysql jdbc prepared-statement
java mysql jdbc prepared-statement
edited Jan 21 '12 at 1:34
user806549
asked Nov 23 '11 at 19:28
ssnssn
93331322
93331322
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
You need to set it in the value itself, not in the prepared statement SQL string.
So, this should do for a prefix-match:
notes = notes
.replace("!", "!!")
.replace("%", "!%")
.replace("_", "!_")
.replace("[", "

Vlad Schnakovszki
5,08434992
5,08434992
answered Mar 14 '15 at 13:24


The Wedding WolfThe Wedding Wolf
23722
23722
3
Thanks for your answer. You might want to read How do I write a good answer? to maximize the potential of your answers. Correct grammar and spelling as well as a thought out structure helps people to read and understand your intention.
– Markus W Mahlberg
Mar 14 '15 at 14:01
1
Though it sounds like someone won't run into this assumption, it's actually very valid especially when working with Oracle. Thanks for pointing out!
– asgs
Jun 14 '15 at 20:27
add a comment |
3
Thanks for your answer. You might want to read How do I write a good answer? to maximize the potential of your answers. Correct grammar and spelling as well as a thought out structure helps people to read and understand your intention.
– Markus W Mahlberg
Mar 14 '15 at 14:01
1
Though it sounds like someone won't run into this assumption, it's actually very valid especially when working with Oracle. Thanks for pointing out!
– asgs
Jun 14 '15 at 20:27
3
3
Thanks for your answer. You might want to read How do I write a good answer? to maximize the potential of your answers. Correct grammar and spelling as well as a thought out structure helps people to read and understand your intention.
– Markus W Mahlberg
Mar 14 '15 at 14:01
Thanks for your answer. You might want to read How do I write a good answer? to maximize the potential of your answers. Correct grammar and spelling as well as a thought out structure helps people to read and understand your intention.
– Markus W Mahlberg
Mar 14 '15 at 14:01
1
1
Though it sounds like someone won't run into this assumption, it's actually very valid especially when working with Oracle. Thanks for pointing out!
– asgs
Jun 14 '15 at 20:27
Though it sounds like someone won't run into this assumption, it's actually very valid especially when working with Oracle. Thanks for pointing out!
– asgs
Jun 14 '15 at 20:27
add a comment |
PreparedStatement ps = cn.prepareStatement("Select * from Users where User_FirstName LIKE ?");
ps.setString(1, name + '%');
Try this out.
add a comment |
PreparedStatement ps = cn.prepareStatement("Select * from Users where User_FirstName LIKE ?");
ps.setString(1, name + '%');
Try this out.
add a comment |
PreparedStatement ps = cn.prepareStatement("Select * from Users where User_FirstName LIKE ?");
ps.setString(1, name + '%');
Try this out.
PreparedStatement ps = cn.prepareStatement("Select * from Users where User_FirstName LIKE ?");
ps.setString(1, name + '%');
Try this out.
answered Mar 10 '16 at 18:01


FaizFaiz
33525
33525
add a comment |
add a comment |
String fname = "Samu0025";
PreparedStatement ps= conn.prepareStatement("SELECT * FROM Users WHERE User_FirstName LIKE ? ");
ps.setString(1, fname);
2
Could you elaborate the answer rather than just giving the answer? See: stackoverflow.com/help/how-to-answer
– Sketchy Coder
Nov 15 '17 at 13:32
add a comment |
String fname = "Samu0025";
PreparedStatement ps= conn.prepareStatement("SELECT * FROM Users WHERE User_FirstName LIKE ? ");
ps.setString(1, fname);
2
Could you elaborate the answer rather than just giving the answer? See: stackoverflow.com/help/how-to-answer
– Sketchy Coder
Nov 15 '17 at 13:32
add a comment |
String fname = "Samu0025";
PreparedStatement ps= conn.prepareStatement("SELECT * FROM Users WHERE User_FirstName LIKE ? ");
ps.setString(1, fname);
String fname = "Samu0025";
PreparedStatement ps= conn.prepareStatement("SELECT * FROM Users WHERE User_FirstName LIKE ? ");
ps.setString(1, fname);
edited Jun 13 '18 at 16:15


Young Emil
1,46011124
1,46011124
answered Nov 15 '17 at 13:27


Ram KumarRam Kumar
111
111
2
Could you elaborate the answer rather than just giving the answer? See: stackoverflow.com/help/how-to-answer
– Sketchy Coder
Nov 15 '17 at 13:32
add a comment |
2
Could you elaborate the answer rather than just giving the answer? See: stackoverflow.com/help/how-to-answer
– Sketchy Coder
Nov 15 '17 at 13:32
2
2
Could you elaborate the answer rather than just giving the answer? See: stackoverflow.com/help/how-to-answer
– Sketchy Coder
Nov 15 '17 at 13:32
Could you elaborate the answer rather than just giving the answer? See: stackoverflow.com/help/how-to-answer
– Sketchy Coder
Nov 15 '17 at 13:32
add a comment |
String query="select * from test1 where "+selected+" like '%"+SelectedStr+"%';";
PreparedStatement preparedStatement=con.prepareStatement(query);
// where seleced and SelectedStr are String Variables in my program
Unsafe + anti-pattern; downvoted.
– 6infinity8
Oct 12 '18 at 22:12
add a comment |
String query="select * from test1 where "+selected+" like '%"+SelectedStr+"%';";
PreparedStatement preparedStatement=con.prepareStatement(query);
// where seleced and SelectedStr are String Variables in my program
Unsafe + anti-pattern; downvoted.
– 6infinity8
Oct 12 '18 at 22:12
add a comment |
String query="select * from test1 where "+selected+" like '%"+SelectedStr+"%';";
PreparedStatement preparedStatement=con.prepareStatement(query);
// where seleced and SelectedStr are String Variables in my program
String query="select * from test1 where "+selected+" like '%"+SelectedStr+"%';";
PreparedStatement preparedStatement=con.prepareStatement(query);
// where seleced and SelectedStr are String Variables in my program
edited Oct 5 '18 at 3:08


Jayendran
3,34331337
3,34331337
answered Oct 5 '18 at 0:33


mahesh dhotemahesh dhote
1
1
Unsafe + anti-pattern; downvoted.
– 6infinity8
Oct 12 '18 at 22:12
add a comment |
Unsafe + anti-pattern; downvoted.
– 6infinity8
Oct 12 '18 at 22:12
Unsafe + anti-pattern; downvoted.
– 6infinity8
Oct 12 '18 at 22:12
Unsafe + anti-pattern; downvoted.
– 6infinity8
Oct 12 '18 at 22:12
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f8247970%2fusing-like-wildcard-in-prepared-statement%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
hFkKROI2dX9 an f3YA t q3eri0pVkU,bJzAC4ik7pVDeqHobU6tRwcPW dv9jgf jE u2LQf,u91 vCZ5LJ