Skip to content

Commit

Permalink
Merge pull request #2 from naseif/main
Browse files Browse the repository at this point in the history
Implementation of the config functionality, error handling
  • Loading branch information
stho32 authored Jul 24, 2022
2 parents bbf4211 + fad6af9 commit a5924d8
Show file tree
Hide file tree
Showing 8 changed files with 472 additions and 36 deletions.
6 changes: 0 additions & 6 deletions Source/optimalDb/optimalDb.Interfaces/IDatabaseConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,3 @@ public interface IDatabaseConnection
string Name { get; }
string ConnectionString { get; }
}

public interface IViewPerformanceTestResult
{
string ViewName { get; } // SCHEMA.VIEWNAME
decimal DurationInSeconds { get; } // 0.5s oder 30s ...
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace optimalDb.Interfaces;

public interface IViewPerformanceTestResult
{
string ViewName { get; } // SCHEMA.VIEWNAME
decimal DurationInSeconds { get; } // 0.5s oder 30s ...
}
78 changes: 63 additions & 15 deletions Source/optimalDb/optimalDb.WinForms/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a5924d8

Please sign in to comment.