0
Hello How can I use this select and skip value with simple quotation mark?
.
.
.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 Passo'Dareia, I want to eliminate this simple quote, because otherwise I will have an error in the sequence of the system...
ps. the select is being done in MYSQL, and the return(rs.getString) used in a JSP page.
What error for example? You want to delete in the return or it can be later, within the same text variable?
– Sorack