Package org.firebirdsql.jdbc.field
Interface FieldDataProvider
- 
 public interface FieldDataProviderProvider of the row data.- Author:
- Roman Rokytskyy
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]getFieldData()Get raw content of the filed.voidsetFieldData(byte[] data)Set raw content of the field.
 
- 
- 
- 
Method Detail- 
getFieldDatabyte[] getFieldData() Get raw content of the filed. This method returns the array of bytes sent by the server back.- Returns:
- contents of the field or nullif NULL value was sent from the server.
 
 - 
setFieldDatavoid setFieldData(byte[] data) Set raw content of the field.- Parameters:
- data- raw content of the field.
 
 
- 
 
-