[ 1752486 ] Clob/blob datatype is string or byte[] in postgresql
This commit is contained in:
parent
3217157f9e
commit
fc82f955e6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue