Några resurser:
-
https://github.com/oracle/node-oracledb/tree/master /exempel har LOB-exempel, till exempel lobinsert1.js och lobinsert2.js
-
Det finns gott om dokumentation om hur man använder LOB i node-oracledb i node-oracledb-manualen, se Arbeta med CLOB-, NCLOB- och BLOB-data .
Till exempel:
// Insert a CLOB
const str = fs.readFileSync(clobInFileName, 'utf8');
result = await connection.execute(
`INSERT INTO no_lobs (id, c) VALUES (:id, :c)`,
{ id: 1, c: str }
);
if (result.rowsAffected != 1)
throw new Error('CLOB was not inserted');
else
console.log('CLOB inserted from ' + clobInFileName);
I ditt fall skulle du läsa str
från din webbtjänst istället för en diskfil. Eftersom jag inte vet vad den webbtjänsten är kan jag inte kommentera mer.
Installationsinstruktioner för node-oracledb finns här .