Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bisand/node-red-contrib-msnodesql
https://github.com/bisand/node-red-contrib-msnodesql
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bisand/node-red-contrib-msnodesql
- Owner: bisand
- License: apache-2.0
- Created: 2020-11-19T16:14:06.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-01T11:24:09.000Z (about 4 years ago)
- Last Synced: 2024-11-14T03:24:30.493Z (about 2 months ago)
- Language: HTML
- Size: 325 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Node-RED support for SQL server
> **!! WARNING !!**
> This module is in a pre release stage! Any use is at your own risk!
>Based on [msnodesqlv8](https://www.npmjs.com/package/msnodesqlv8)
## Windows
This library only works with Node versions greater than 10.0, and will most likely only work on Node-RED installed on windows, unless you follow the steps below.## Linux (x64 only)
if running Node-RED on Linux, the odbc driver needs to be installed as outlined here [ODBC 17](https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15). Please use version >= 17.5 which has been tested with this library. We are running test suite for Linux on AppVeyor which you can see via the badge at top of this page. Linux distros tested so far are Ubuntu 18.04, Alpine 3.12, Ubuntu 20.04, Debian 10.5 and Fedora 32. The driver also works under windows linux subsystem 2 (WLS).
In order to install it on Linux you will also need to install essential build tools for c++
Ubuntu example:
```bash
sudo apt install build-essential
```