*
* @see
* org.tmatesoft.sqljet.core.internal.table.ISqlJetBtreeTable#getBlob(int)
*/
public ISqlJetMemoryPointer getBlob(int field) throws SqlJetException {
final ISqlJetVdbeMem value = getValueMem(field);
if (value == null || value.isNull())
return null;
return value.valueBlob();
}