I am developing an application based on google sql cloud . The Mysql database is local. The code below to insert a row works :
Statement stmt = connection.createStatement();
String sql = "INSERT INTO USER(name) VALUES ('smith')";
stmt.executeUpdate(sql);
However, the code below, that uses PreparedStatement rather that Statement does not work :
String sql = "insert into USER(email) values(?)";
PreparedStatement pstmt = connection.prepareStatement(sql);
pstmt.setString(1, email);
int success = pstmt.executeUpdate();
No rows are inserted in the database and success = 0 (return code for error)
Thanks for your help
prepareStatementvscreateStatement. – Josvic Zammit Apr 12 '12 at 23:11