PreparedStatement: setInt(int parameterIndex, int x) : PreparedStatement « java.sql « Java by API






PreparedStatement: setInt(int parameterIndex, int x)

 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;

public class Main {

  public static void main(String[] args) throws Exception {
    try {
      String url = "jdbc:odbc:databaseName";
      String driver = "sun.jdbc.odbc.JdbcOdbcDriver";
      String user = "guest";
      String password = "guest";
      Class.forName(driver);
      Connection connection = DriverManager.getConnection(url,user, password);
      String changeLastName = "UPDATE authors SET lastname = ? WHERE authid = ?";
      PreparedStatement updateLastName = connection.prepareStatement(changeLastName);

      updateLastName.setString(1, "Martin"); // Set lastname placeholder value
      updateLastName.setInt(2, 4); // Set author ID placeholder value

      int rowsUpdated = updateLastName.executeUpdate(); // execute the update
      System.out.println("Rows affected: " + rowsUpdated);
      connection.close();
    } catch (ClassNotFoundException cnfe) {
      System.err.println(cnfe);
    } catch (SQLException sqle) {
      System.err.println(sqle);
    }
  }
}

           
         
  








Related examples in the same category

1.PreparedStatement: addBatch()
2.PreparedStatement: executeUpdate()
3.PreparedStatement: getParameterMetaData()
4.PreparedStatement: getWarnings()
5.PreparedStatement: setAsciiStream(int parameterIndex, InputStream x, int length)
6.PreparedStatement: setBigDecimal(int parameterIndex, BigDecimal x)
7.PreparedStatement: setBinaryStream(int parameterIndex, InputStream x, int length)
8.PreparedStatement: setBoolean(int parameterIndex, boolean x)
9.PreparedStatement: setByte(int parameterIndex, byte x)
10.PreparedStatement: setCharacterStream(int parameterIndex, Reader reader, int length)
11.PreparedStatement: setClob(int parameterIndex, Clob x)
12.PreparedStatement: setDate(int parameterIndex, Date x)
13.PreparedStatement: setDouble(int parameterIndex, double x)
14.PreparedStatement: setFetchSize(int rows)
15.PreparedStatement: setFloat(int parameterIndex, float x)
16.PreparedStatement: setLong(int parameterIndex, long x)
17.PreparedStatement: setNull(int parameterIndex, int sqlType)
18.PreparedStatement: setObject(int parameterIndex, Object x)
19.PreparedStatement: setRef(int parameterIndex, Ref x)
20.PreparedStatement: setShort(int parameterIndex, short x)
21.PreparedStatement: setString(int parameterIndex, String x)
22.PreparedStatement: setTime(int parameterIndex, Time x)
23.PreparedStatement: setTimestamp(int parameterIndex, Timestamp x)
24.PreparedStatement: setURL(int parameterIndex, URL x)