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






PreparedStatement: setShort(int parameterIndex, short x)

 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;

public class Main {
  public static void main(String[] args) throws Exception {
    Connection conn = getConnection();
    Statement stmt = conn.createStatement();
    stmt.executeUpdate("create table survey (id int, id2 tinyint, id3 smallint, id4 bigint, id5 real);");
    String sql = "INSERT INTO survey (id2,id3,id4,id5) VALUES(?,?,?,?)";
    PreparedStatement pstmt = conn.prepareStatement(sql);
    byte b = 1;
    short s = 2;
    pstmt.setByte(1, b);
    pstmt.setShort(2, s);
    pstmt.setInt(3, 3);
    pstmt.setLong(4, 4L);
    pstmt.executeUpdate();

    ResultSet rs = stmt.executeQuery("SELECT * FROM survey");
    while (rs.next()) {
        System.out.println(rs.getString(2));
    }
    rs.close();
    stmt.close();
    conn.close();
  }

  private static Connection getConnection() throws Exception {
    Class.forName("org.hsqldb.jdbcDriver");
    String url = "jdbc:hsqldb:mem:data/tutorial";

    return DriverManager.getConnection(url, "sa", "");
  }
}

   
  








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: setInt(int parameterIndex, int x)
15.PreparedStatement: setFetchSize(int rows)
16.PreparedStatement: setFloat(int parameterIndex, float x)
17.PreparedStatement: setLong(int parameterIndex, long x)
18.PreparedStatement: setNull(int parameterIndex, int sqlType)
19.PreparedStatement: setObject(int parameterIndex, Object x)
20.PreparedStatement: setRef(int parameterIndex, Ref 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)