node-odbc
node-odbc copied to clipboard
unixODBC bindings for node
I'm using unixODBC with FreeTDS on ArchLinux, it's communicating with a very old Microsoft SQL Server 2000 database. It does not support BIGINT type, so using the stored procedures functionality...
Example: ``` sql SELECT A.X, B.X FROM TABLE_A A, TABLE_B B ``` Returns only one of the columns' (`X`) data. **MUST** return both `A.X` and `B.X`.
With v0.5.17, Unicode SQL strings work with sqlite3 and mysql. But they do not work with MSSQL via FreeTDS or on Windows with the native client. Unicode bound parameters do...
Hi Dan, First of all thanks for your great work on node-odbc! But there seems to be an issue. If I execute a stored-procedure with db.sqlquery() it returns an empty...