Browse by Tags

MK Visual C# UG

MK Visual C# UG
Се за Microsoft .NET Framework почнувајќи од WinForms па се до Mobile Device Development
Tags
Tagged Content List
  • Blog Post: 20 Database Checks

    Recently I discovered a small application named SqlCop that integrates many database tests. I tried the tool and it was pretty much ok, although I’ve discovered some application bugs and also some of the queries(tests) were not working in my environment. So I decided to completely rewrite all those...
  • Blog Post: Run a .sql script files in C#

    If you have placed in situation to execute .sql script files from .NET code on SQL Server, you will see that SqlCommand class is not that useful. In other words, you can't execute batch commands that contains 'GO' (batch finalizer command). So you can think of several options, like split...