Mark Irish
Mark Irish
@ErikJansenIRefact taking a peek now
> Like all that could be done in > > https://github.com/markdirish/node-odbc/blob/d00c3ee6839ff67ca4415d53b0b9541e1fbec14a/lib/Connection.js#L161 > > and wouldn't need any C++ code for it at all. > Well, it wouldn't but there's no...
Hi @hansaliyad1 , could you just confirm what version of `odbc` you are using? If 2.x, I think I know the issue: It looks like your production environment is on...
@hansaliyad1 , did your output look exactly the same in 2.3.3, or was it just the statement that was broken? On Windows 64-bit machines, `odbc` uses a pre-built binary. Its...
I haven't played around with ODBC on mac, but I believe the native Mac driver manager uses [iODBC](http://www.iodbc.org/dataspace/doc/iodbc/wiki/iodbcWiki/WelcomeVisitors). I'm not sure but the Sybase one might target either unixODBC or...
The instructions at the bottom of this page _might_ help, you can try to target unixODBC when you build it and see if that helps: http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc20116.1550/html/aseodbc/aseodbc6.htm
Hi @snotmare , Could you post the snippet of code that generates the error? Just the `callProcedure` function call should suffice. It looks like it is failing on `SQLProcedures`, but...
Ok, I created a large procedure with 80 INOUT parameters, and it seemed to behave ok. So it shouldn't be the parameter count itself. Next thing lets try, lets get...
> Good morning @markdirish ! > > This is the portion of code that makes the stored procedure call... > > ``` > try { > let callResults = new...
Ok, one more SQL.log with the new code and it should show me the number of params it expects. Delete your old log before running or else it will append...