Merge pull request #1183 from dbgate/feature/1181-oracle-lob-handler

feat: normalize oracle LOB values
This commit is contained in:
Jan Prochazka
2025-08-14 12:13:14 +02:00
committed by GitHub

View File

@@ -13,6 +13,7 @@ function getOracledb() {
if (!oracledbValue) {
oracledbValue = require('oracledb');
oracledbValue.fetchAsString = [oracledbValue.CLOB, oracledbValue.NCLOB];
oracledbValue.fetchAsBuffer = [oracledbValue.BLOB];
}
return oracledbValue;
}