Statement stmt=null; stmt=conn.createStatement(); stmt.executeUpdate(sql);
String 타입의 경우 작은 따옴표가 필요하나 int는 해당되지 않는다
PreparedStatement pstmt=null; pstmt=conn.prepareStatement(sql); pstmt.setString(parameterIndex, x); pstmt.executeUpdate();