List of usage examples for java.sql SQLOutput writeBigDecimal
void writeBigDecimal(java.math.BigDecimal x) throws SQLException;
From source file:Employee.java
public void writeSQL(SQLOutput stream) throws SQLException { stream.writeBigDecimal(SSN); stream.writeString(FirstName);//from w w w .ja va 2 s . co m stream.writeString(LastName); stream.writeBigDecimal(Salary); }