我有一个文本框。当用户在文本框中输入名称时,我希望从表中获取详细信息
String getTxt = text.getText();
ResultSet rs=st.executeQuery("SELECT * FROM authors_4 WHERE self_authors="+getTxt);
在执行这个我得到异常
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server
这个有什么解决办法。需要帮忙