ranjithchev
ranjithchev
``` const app = require('express')(); const httpContext = require('express-http-context'); var db = require('odbc')(); const cn = "DRIVER={ODBC Driver 13 for SQL Server};SERVER=SOMESERVER,SOMEPORT;DATABASE=somedb;Trusted_Connection=Yes" app.use(httpContext.middleware); app.get('/', (req, res) => { httpContext.set('foo', 'bar');...
Hi Can I invoke a stored procedure which takes a Table type parameter? If so, do we have an example? Thanks Ranjith
Hi I understand that currently this library supports binding parameters but expects it be in the right order. select a,b from table1 where a=? and b=? and the binding parameters...
Hi I'm trying to install odbc on a Linux machine with gcc 5.3.1. It works on one Linux host but does not work on the other one. The error I...
Hi The express-http-context seems to be working well with most of the npm packages we are using but odbc. When I checked with them it looks like some changes might...
Hi I'm using odbc to connect to sql server from linux in my node application. I know that mssql module has built in sql injection protection when we parameterize the...