databricks-sql-nodejs icon indicating copy to clipboard operation
databricks-sql-nodejs copied to clipboard

Databricks SQL Connector for Node.js

Results 42 databricks-sql-nodejs issues
Sort by recently updated
recently updated
newest added

Hey! I'm trying to parameterise an INSERT statement and feeding `executeStatement` an array of arrays so that I can batch INSERTs into a table. However, it seems like instead of...

[PECO-983] [PECO-983]: https://databricks.atlassian.net/browse/PECO-983?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ

Hi, we have encountered a socket hang-up error while performing a longevity test. we have used **Node version: 20.11.1** and **@databricks/sql package version: 1.7.1** kindly find the below error and...

when connecting to a databricks warehouse, if it is not serverless, it can take minutes to start up. we would like a nonblocking way of detecting whether a databricks warehouse...

Originally shared in https://github.com/databricks/databricks-sql-nodejs/issues/245, but that issue was resolved by making the dependency optional (with reduced functionality if omitted). However, lz4 can cause install problems in another way on systems...

## Issue Description I'm encountering multiple issues with the @databricks/sql library version 1.7.1 in a Node.js 20.x Lambda function environment: Deprecation warning when using the library: ``` [DEP0005] DeprecationWarning: Buffer()...

Hello, we are not able to execute this library as node is having issues with the lz4 dependency of this package. Can you please assist on how to use databricks-sql-nodejs...

The optional `lz4` dependency is currently loaded as follows: ```ts function tryLoadLZ4Module(): LZ4Module | undefined { try { return require('lz4'); // eslint-disable-line global-require } catch (err) { const isModuleNotFoundError =...

Looks like this package only allows INLINE execution. Are there any plans to allow EXTERNAL_LINKS execution?

Using this tsconfig.json I can get the example code to build without error. tsconfig.json: ``` { "compilerOptions": { "lib": ["ES2022"], "outDir": "./dist", "rootDir": "./src", "target": "ES2022", "module": "commonjs", "moduleResolution": "node",...