diff --git a/samples/demos/azure-sql-edge-demos/Wind Turbine Demo/webappsrc/SqlDbEdgeDemoWeb/SqlDbEdgeDemo.Web/ClientApp/package-lock.json b/samples/demos/azure-sql-edge-demos/Wind Turbine Demo/webappsrc/SqlDbEdgeDemoWeb/SqlDbEdgeDemo.Web/ClientApp/package-lock.json index b8d8fc78..43d14a5d 100644 --- a/samples/demos/azure-sql-edge-demos/Wind Turbine Demo/webappsrc/SqlDbEdgeDemoWeb/SqlDbEdgeDemo.Web/ClientApp/package-lock.json +++ b/samples/demos/azure-sql-edge-demos/Wind Turbine Demo/webappsrc/SqlDbEdgeDemoWeb/SqlDbEdgeDemo.Web/ClientApp/package-lock.json @@ -8205,9 +8205,9 @@ } }, "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "lodash._reinterpolate": { "version": "3.0.0", diff --git a/samples/features/json/reactjs/dotnet-comments-app/dotnet-comments-app.csproj b/samples/features/json/reactjs/dotnet-comments-app/dotnet-comments-app.csproj index 067a5f12..c2ee2a0e 100644 --- a/samples/features/json/reactjs/dotnet-comments-app/dotnet-comments-app.csproj +++ b/samples/features/json/reactjs/dotnet-comments-app/dotnet-comments-app.csproj @@ -17,7 +17,7 @@ - + diff --git a/samples/features/json/todo-app/dotnet-rest-api/dotnet-rest-api.csproj b/samples/features/json/todo-app/dotnet-rest-api/dotnet-rest-api.csproj index 29c2e27d..37c7be1b 100644 --- a/samples/features/json/todo-app/dotnet-rest-api/dotnet-rest-api.csproj +++ b/samples/features/json/todo-app/dotnet-rest-api/dotnet-rest-api.csproj @@ -17,7 +17,7 @@ - + diff --git a/samples/tutorials/node.js/macOS/SqlServerColumnstoreSample/columnstore.js b/samples/tutorials/node.js/macOS/SqlServerColumnstoreSample/columnstore.js index ff4b9902..c1e3f7da 100644 --- a/samples/tutorials/node.js/macOS/SqlServerColumnstoreSample/columnstore.js +++ b/samples/tutorials/node.js/macOS/SqlServerColumnstoreSample/columnstore.js @@ -44,4 +44,7 @@ connection.on('connect', function(err) { exec('SELECT SUM(Price) FROM Table_with_5M_rows'); }, ]); -}); \ No newline at end of file +}); + +// Initialize the connection. +connection.connect(); diff --git a/samples/tutorials/node.js/macOS/SqlServerSample/connect.js b/samples/tutorials/node.js/macOS/SqlServerSample/connect.js index 7a405b04..e4ff0cb5 100644 --- a/samples/tutorials/node.js/macOS/SqlServerSample/connect.js +++ b/samples/tutorials/node.js/macOS/SqlServerSample/connect.js @@ -20,4 +20,7 @@ connection.on('connect', function(err) { } else { console.log('Connected'); } -}); \ No newline at end of file +}); + +// Initialize the connection. +connection.connect(); diff --git a/samples/tutorials/node.js/macOS/SqlServerSample/crud.js b/samples/tutorials/node.js/macOS/SqlServerSample/crud.js index 160a28f1..4b26179b 100644 --- a/samples/tutorials/node.js/macOS/SqlServerSample/crud.js +++ b/samples/tutorials/node.js/macOS/SqlServerSample/crud.js @@ -123,7 +123,10 @@ connection.on('connect', function(err) { } else { console.log("Done!"); } - } - ) + }) } -}); \ No newline at end of file +}); + + +// Initialize the connection. +connection.connect();