sosoba
sosoba
> It's something I'd like to fix - and I'd welcome a PR from anyone that has the time. It's just that I haven't personally had time to investigate the...
Hi. Typescript team closes #41549 two monts ago. Did it really help?
Is it correct to decrement year: ```js year -= 1; ``` without checking? Remember that gregorian callendar doees not has `0` year and 1 - 1 should be -1.
It is worth paying attention to the second parameter of `captureStackTrace`. By specifying the scope function (ex. this), you can trim the stack trace from internals. ```js Error.captureStackTrace(err, this) ```
I receive `DPY-3015` on 19c database. The most convenient option would be: ```py connection = oracledb.connect(params=params, fallbackThick=True) ``` Now we'll work around this by calling a python subprocess with a...
What is ```js typeof packageLockJsonContents ``` ?
By the way. How is the work on the thin driver progressing? Inherently, it will be less related to Node and more appropriate to alternative ES runtimes.
Maybe you are trying to retrieve CLOB content from the result ouside this function while the connection is already closed by your wrapper.
Use a utility like `netstat` to check that both connections (from Toad and Node) are to the same IP and with the same source address.
I'm looking into source code and there is a key line: ```c napi_create_double(env, data->value.asDouble, value) ``` Look at [ODPI-C data structure](https://oracle.github.io/odpi/doc/unions/dpiDataBuffer.html#dpidatabuffer). Driver does not give a better numeric type than...