Mark Drake

Results 25 comments of Mark Drake

``` C:\gui\dist\yadamu-win32-x64\resources\app>type package.json { "name": "yadamu", "version": "1.0.0", "description": "User Interface for YADAMU", "main": "main.js", "scripts": { "start": "electron ./" }, "repository": { "type": "git", "url": "TBD" }, "author": "Mark...

Seeing the same problem compose 1.29.2 in windows docker desktop 3.5.1 talking to Docker running on UBUNTU-20.04 Setting COMPOSE_PARAMIKO_SSH=1 seems to fix this.

Given that the FORMATTED_DOC is a BLOB I would have expected a HexBinary representation of the LOB in the JSON object.

Anthony The SQL setup is the standard Oracle Sample Schemas. I thought that would make life simple See https://github.com/oracle/db-sample-schemas The reason there is a lot of text in the output...

Anthony I modified my code as follows ``` "use strict" const util = require('util') const oracledb = require('oracledb'); oracledb.fetchAsBuffer [oracledb.BLOB] oracledb.fetchAString [oracledb.CLOB] async function main() { const connectionDetails = {...

Sorry I missed that, but it makes no difference.. ``` "use strict" const util = require('util') const oracledb = require('oracledb'); oracledb.fetchAsBuffer = [oracledb.BLOB] oracledb.fetchAsString = [oracledb.CLOB] async function main() {...

Anthony the scenario I am describing is different. In my case the LOB is an attribute of a PL/SQL Type, not a column in the database. If you look at...

Unfortunately since I am writing generic code that has to handle any object without knowing it's structure this is not really feasible in my particular use case. Combined with not...

I did a quick hunt (30secs) to look for the .stream() implementation but didn't see it. I was really trying to see if / how destroy() / _destroy() was implemented....

I wonder if this is a side effect of ``` var Readable = require('readable-stream'); ``` rather than (switching to modern practice) ``` import { Readable } from 'stream' ``` Note...