List of usage examples for java.sql SQLOutput writeInt
void writeInt(int x) throws SQLException;
From source file:InsertCustomType_Oracle.java
public void writeSQL(SQLOutput stream) throws SQLException { stream.writeString(this.isbn); stream.writeString(this.title); stream.writeString(this.author); stream.writeInt(this.edition); }