Answers for "which of the following statement in jdbc is part of the prepared statement"

4

jdbc prepared statement example

String query = "INSERT INTO artikel VALUES (?, ?, ?, ?, ?)";
try {
  PreparedStatement ps = con.prepareStatement(query);
  ps.setInt(1, aNumb);
  ps.setString(2, aName);
  ps.setFloat(3, aPrice);
  ps.setInt(4, aAvailable);
  ps.setString(5, aInfo);
  ps.executeUpdate();

  ps.close();
  disconnectDB();
}catch(SQLException e){
  System.out.println(e.getMessage());
}
Posted by: Guest on October-16-2020

Code answers related to "which of the following statement in jdbc is part of the prepared statement"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language