import java.sql.*;
import java.math.*;
public class myint implements SQLData 
{ 
    public int value;
    private String sql_type="myint";

    public String getSQLTypeName() { return "myint"; }

    public void readSQL (SQLInput stream, String type) throws SQLException
    {
        sql_type = type; 
        value = stream.readInt();
    }

    public void writeSQL (SQLOutput stream) throws SQLException
    { 
        stream.writeInt(value);
    }

}
