node-odbc icon indicating copy to clipboard operation
node-odbc copied to clipboard

unixODBC bindings for node

Results 34 node-odbc issues
Sort by recently updated
recently updated
newest added

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...

Bug

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...

Bug