I've looked and looked for a good SQL Client that worked on Windows 64 bit for Node.js and didn't find any, so I build one myself. I started with code from other projects but in the end just used the MS examples and expanded them to the point that they worked.
This is being used in production products, so I know it works and works well. The binary that is packaged with the repo is for 64 bit Windows. This is a pure C++ implementation so, it should build in 32 bit with VC++ express. sqlnative2.node is a native (binary) library for Node.js that allows you to connect to SQL Server and execute SQL Statements (Stored Procedures, Queries, whatever can be done through a command object). It was developed due to the lack of working SQL clients for Node.js. The code is C++ and compiles in Visual Studios 2010 (professional required for 64 bit). The current library contains the 64 bit build of sqlnative2.node https://github.com/jdarling/node-sqlnative - Jeremy -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
