[ 1752486 ] Clob/blob datatype is string or byte[] in postgresql

This commit is contained in:
Heng Sin Low 2007-07-12 09:04:02 +00:00
parent 3217157f9e
commit fc82f955e6
1 changed files with 4 additions and 0 deletions

View File

@ -2698,6 +2698,10 @@ public class GridTable extends AbstractTableModel
long length = lob.length();
rowData[j] = lob.getBytes(1, (int)length);
}
else if (value instanceof String)
rowData[j] = value;
else if (value instanceof byte[])
rowData[j] = value;
}
// String
else