Skip to content

Commit 7385751

Browse files
committed
2 parents a537b3b + 3d96333 commit 7385751

6 files changed

Lines changed: 19 additions & 10 deletions

File tree

samples/demos/azure-sql-edge-demos/Wind Turbine Demo/webappsrc/SqlDbEdgeDemoWeb/SqlDbEdgeDemo.Web/ClientApp/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

samples/features/json/reactjs/dotnet-comments-app/dotnet-comments-app.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<ItemGroup>
1919
<PackageReference Include="Belgrade.Sql.Client" Version="0.3.0" />
20-
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.0.3" />
20+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.0.4" />
2121
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.2" />
2222
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.0.3" />
2323
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.0.2" />

samples/features/json/todo-app/dotnet-rest-api/dotnet-rest-api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<ItemGroup>
1919
<PackageReference Include="Belgrade.Sql.Client" Version="0.3.0" />
20-
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.0.3" />
20+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.0.4" />
2121
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.2" />
2222
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.0.3" />
2323
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.0.2" />

samples/tutorials/node.js/macOS/SqlServerColumnstoreSample/columnstore.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,7 @@ connection.on('connect', function(err) {
4444
exec('SELECT SUM(Price) FROM Table_with_5M_rows');
4545
},
4646
]);
47-
});
47+
});
48+
49+
// Initialize the connection.
50+
connection.connect();

samples/tutorials/node.js/macOS/SqlServerSample/connect.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@ connection.on('connect', function(err) {
2020
} else {
2121
console.log('Connected');
2222
}
23-
});
23+
});
24+
25+
// Initialize the connection.
26+
connection.connect();

samples/tutorials/node.js/macOS/SqlServerSample/crud.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,10 @@ connection.on('connect', function(err) {
123123
} else {
124124
console.log("Done!");
125125
}
126-
}
127-
)
126+
})
128127
}
129-
});
128+
});
129+
130+
131+
// Initialize the connection.
132+
connection.connect();

0 commit comments

Comments
 (0)