List of usage examples for java.sql SQLInput readString
String readString() throws SQLException;
String
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(); }
From source file:Employee.java
public void readSQL(SQLInput stream, String typeName) throws SQLException { sqlUdt = typeName;/*from w ww .j a v a 2 s. co m*/ SSN = stream.readBigDecimal(); FirstName = stream.readString(); LastName = stream.readString(); Salary = stream.readBigDecimal(); }