Generating report from SQL

Preconditions:
=> Database has been installed according to https://www.hemelix.com/sql/sql-server-installation/
=> Database has been tested by running some of the example we have provided https://www.hemelix.com/sql/sql-data-modeling/
We need to make sure that SQL Server has been installed properly and also tested properly.
public class SqlDirectConnection : IDisposable
{
private SqlConnection directConnection;
public void Dispose()
{
if (directConnection != null)
{
directConnection.Close();
}
}
}
https://azure.microsoft.com/en-us/features/azure-portal/ Where we can have professional BI tools, its free
More coming as we update the site…