String username="abc";
String pwd="abc";
String query="Select username,pwd where username = ? and pwd = ?";
I want to replace character '?'
in this string by different values with username and pwd specifed..Is there any function by which we can find '?'
which is there two times and replace it with username and pwd?