List of usage examples for java.sql SQLOutput writeString
void writeString(String x) throws SQLException;
String
in the Java programming language. 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); }
From source file:Employee.java
public void writeSQL(SQLOutput stream) throws SQLException { stream.writeBigDecimal(SSN);//from w w w. j av a 2 s.co m stream.writeString(FirstName); stream.writeString(LastName); stream.writeBigDecimal(Salary); }