os.write(chars, 0, chars.length);
byte[] bytes = os.getBuffer();
*/
Result result = setBytesBA(lobID, bytes, offset * 2, chars.length * 2);
if (result.isError()) {
return result;
}
if (offset + chars.length > length) {
result = setLength(lobID, offset + chars.length);
if (result.isError()) {
return result;
}
}
return ResultLob.newLobSetResponse(lobID, 0);