{"id":21655240,"url":"https://github.com/pseitz/node-hdbconnect","last_synced_at":"2026-05-08T06:44:31.967Z","repository":{"id":38333437,"uuid":"158755687","full_name":"PSeitz/node-hdbconnect","owner":"PSeitz","description":"hana database driver for node - wraps hdbconnect","archived":false,"fork":false,"pushed_at":"2023-02-27T17:26:02.000Z","size":1383,"stargazers_count":1,"open_issues_count":17,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-25T06:25:34.714Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PSeitz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-11-22T22:31:57.000Z","updated_at":"2022-12-03T03:34:03.000Z","dependencies_parsed_at":"2024-11-25T08:42:07.615Z","dependency_job_id":null,"html_url":"https://github.com/PSeitz/node-hdbconnect","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PSeitz%2Fnode-hdbconnect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PSeitz%2Fnode-hdbconnect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PSeitz%2Fnode-hdbconnect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PSeitz%2Fnode-hdbconnect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PSeitz","download_url":"https://codeload.github.com/PSeitz/node-hdbconnect/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244554122,"owners_count":20471173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-25T08:30:58.219Z","updated_at":"2025-10-15T13:53:07.456Z","avatar_url":"https://github.com/PSeitz.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# node-hdbconnect\n\nHANA database driver for node - uses [hdbconnect](https://github.com/emabee/rust-hdbconnect)\n\n## Prerequisites\n\n- Rust: `curl https://sh.rustup.rs -sSf | sh`\n\n- Node Build Dependencies: https://guides.neon-bindings.com/getting-started/\n\n\n\n## Example\n\n`npm install --save  PSeitz/node-hdbconnect`\n\n```javascript\n\nconst hdb = require('node-hdbconnect');\nasync function test(){\n\n    let connection;\n    try{\n        connection = await hdb.createClient({\n            \"host\": \"ld2512\",\n            \"port\": 30515,\n            \"user\": \"SYSTEM\",\n            \"password\": \"manager\"\n        }\n        );\n\n        console.log(await connection.statement(\"SELECT * FROM DUMMY\"))\n\n        await connection.multiple_statements_ignore_err([\"DROP TABLE FOO_SQUARE\"]);\n        await connection.statement(\"create table FOO_SQUARE ( f1 INT primary key, f2 INT)\");\n\n        let insert_stmt = await connection.prepare(\"insert into FOO_SQUARE (f1, f2) values(?,?)\");\n        insert_stmt.add_batch([10, 10]);\n        insert_stmt.add_batch([11, 20]);\n        await insert_stmt.execute_batch();\n        insert_stmt.drop();\n\n        console.log(await connection.statement(\"SELECT * FROM FOO_SQUARE\"))\n\n    }catch(err){\n        console.log(\"Error:\"+err.message)\n    }\n    connection!=null \u0026\u0026 connection.close()\n}\n\ntest();\n\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpseitz%2Fnode-hdbconnect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpseitz%2Fnode-hdbconnect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpseitz%2Fnode-hdbconnect/lists"}