List of usage examples for java.sql SQLInput readBigDecimal
java.math.BigDecimal readBigDecimal() throws SQLException;
java.math.BigDecimal
object in the Java programming language. From source file:Employee.java
public void readSQL(SQLInput stream, String typeName) throws SQLException { sqlUdt = typeName;/* ww w . ja v a 2 s .c om*/ SSN = stream.readBigDecimal(); FirstName = stream.readString(); LastName = stream.readString(); Salary = stream.readBigDecimal(); }