List of usage examples for java.sql SQLInput readInt
int readInt() throws SQLException;
int
in the Java programming language. From source file:InsertCustomType_Oracle.java
public void readSQL(SQLInput stream, String sqlType) throws SQLException { this.isbn = stream.readString(); this.title = stream.readString(); this.author = stream.readString(); this.edition = stream.readInt(); }