Laurenz Albe

Results 71 comments of Laurenz Albe

I'll close the ticket for inactivity. Feel free to reopen it if you have new information.

I'll close this, since it has been inactive for over two years, and I see no consensus about how this can be implemented safely.

Four years later: shall we still keep this open?

I guess I'll have to close this as abandoned.

I think that the code is OK as it is. `PQgetResult` reads a *complete* query result. Otherwise, what would be stored in `result`.

@kgeis Thanks - what do I do with that information?

I have removed the "wontfix" tag for the time being. So now I have two proposed Dockerfiles. As I said, I am not in a position to review them. What...

I'll close the issue as "inactive".

I'll take a look when I return from vacation. But as far as I remember, there are empty LOBs in Oracle. We should use that rather than NULL.

Try this in Oracle: ``` CREATE TABLE nclob ( id number(5) CONSTRAINT nclob_pkey PRIMARY KEY, c clob, nc nclob ); INSERT INTO nclob VALUES (1, EMPTY_CLOB(), EMPTY_CLOB()); COMMIT; ``` That...