Étienne BERSAC
Étienne BERSAC
Hi @kkrasnov1 . can you share the `role` rule ?
This looks like a bug. I need to investigate.
A proposal would bo to hijack lob.data using a new API `lob.Hijack(f io.Writer)`. What do you think of this ?
> A proposal would bo to hijack lob.data using a new API `lob.Hijack(f io.Writer)`. What do you think of this ? I dug a but. This is not the right...
For now, I investigate streaming LOB using `DBMS_LOB.SUBSTR`. This streams by chunk of 4k (BLOB) or 2k (CLOB). Such small chunk has overhead. Actually, pgx wraps Postgres LO API in...
Using `DBMS_LOB.SUBSTR` is extremly slow. I dream of a way to stream chunk of data using io.Writer, maybe using a specific API. Something like: ``` go var lob ora.LOB row.Scan(&lob)...
@sijms at oracle protocol level, how does Oracle send data ? What are the network messages ? How many ? Which size ? Which order ?