pstmtJ.executeUpdate(sql);
→ आप मूल SQL स्ट्रिंग भेज रहे हैं, क्योंकि वह कॉल कर रहा है Statement.executeUpdate(String)
.
pstmtJ.executeUpdate();
. का उपयोग करें इसके बजाय (PreparedStatement.executeUpdate ()
) तैयार कथन को निष्पादित करने के लिए।