1

我想从 node.js 连接到 Windows8 上的 MSSQL,但我无法让它工作:(

如果我跑node-gyp configure build

我得到这个错误

gyp ERR! build error
gyp ERR! stack Error: `C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe
` failed with exit code: 1
gyp ERR! stack     at ChildProcess.onExit (C:\Users\mkirchweger\AppData\Roaming\
npm\node_modules\node-gyp\lib\build.js:267:23)
gyp ERR! stack     at ChildProcess.EventEmitter.emit (events.js:98:17)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (child_process.js:789:
12)
gyp ERR! System Windows_NT 6.2.9200
gyp ERR! command "node" "C:\\Users\\mkirchweger\\AppData\\Roaming\\npm\\node_mod
ules\\node-gyp\\bin\\node-gyp.js" "configure" "build"
gyp ERR! cwd D:\Bibliotheken\node_test\node_modules\msnodesql
gyp ERR! node -v v0.10.18
gyp ERR! node-gyp -v v0.10.10
gyp ERR! not ok

如果我尝试在没有构建的情况下运行我的 node.js 应用程序,我当然会收到消息

Error: Cannot find module '../build/Release/sqlserver.node'
4

1 回答 1

1

我应该先说明 node.js 模块“Node-sqlserver”已重命名为“MSNodeSQL”。

我可以通过访问https://github.com/WindowsAzure/node-sqlserver/tree/master/src的模块 github 找到所需的更改

在上面的链接中,Operation.h 下概述了更改

从(第 38 行)更改为:

int result = uv_queue_work(uv_default_loop(), &operation->work, OnBackground, OnForeground);

至:

int result = uv_queue_work(uv_default_loop(), &operation->work, OnBackground, (uv_after_work_cb)OnForeground);

我希望这个答案就足够了。

于 2013-09-19T17:31:35.850 回答