Hello How can I use this select and ignore value with single quotes?
.
.
.st.executeQuery("select * from tabela_A where id = uc");
rs = st.getResultSet();
while (rs.next()) {
texto = rs.getString("rua")
}...
... the problem is that when the street is for example Step_Dial, I want to delete this single quotation mark, otherwise I will have an error following the system ...
ps. the select is being done in MYSQL, and the return (rs.getString) used in a JSP page.