You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 18, 2020. It is now read-only.
I'm new to node and this environment, and was encountering some errors building msnodesql after upgrading the solution to VS2013.
Windows 7
Node v0.10.26
Python 2.7.6
Here are the steps I had to do to resolve:
As with other recommendations, I had to also make this change in Operation.h (line 39):
int result = uv_queue_work(uv_default_loop(), &operation->work, OnBackground, (uv_after_work_cb)OnForeground);
There where errors with finding 'shared_ptr'. To resolved I had to add the following to stdafx.h:
include
I was able to successfully use msnodesql once I had a Release build.