java +mysql 
从一个数据库a 的a表取出字段string a 
之后插入到数据库b 的a表同名字段string aosta's boy
Exception in thread "main" java.sql.SQLException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's boy',。,0)' at line 1
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2921)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1570)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1665)
at com.mysql.jdbc.Connection.execSQL(Connection.java:2972)
at com.mysql.jdbc.Connection.execSQL(Connection.java:2902)
at com.mysql.jdbc.Statement.executeUpdate(Statement.java:929)
at Test.main(Test.java:54)
原因是字段a的值是  osta's boy
这样导致 Insert into a      valuse     ('osta's boy '...) 
这样发生错误,问如何解决这个问题