Homepage_de

  • SQL Logging

    A comprehensive logging solution for SQL Server stored procedures that provides structured logging with different severity levels, automatic caller detection, and detailed error tracking. Features Installation — Create Logger schema CREATE SCHEMA Logger; GO — Create logging table and procedures — [Copy the full installation script here] Basic Usage Simple Logging — Info logging EXEC…

  • Ein Logging „Framework“ für MSSQL

    Eine umfassende Protokollierungslösung für SQL Server Stored Procedures, die strukturiertes Logging mit verschiedenen Schwerelevels, automatischer Erkennung des aufrufenden Procedures und detaillierter Fehlerverfolgung bietet. Funktionen Installation Grundlegende Verwendung Einfache Protokollierung Integrations-Beispiel Protokolle Abfragen Aktuelle Fehler Protokolle nach Prozedur Warnungen und Fehler der letzten Stunde Tabellenstruktur Die Logger.EventLog-Tabelle enthält: Best Practices Performance-Überlegungen Lizenz MIT-Lizenz – Frei zur…

  • .NET 9.0 – .NET Maui from Frame to Border

    Since .NET 9 the compiler warns “Frame” is obsolete: “Frame is obsolete as of .NET 9. Please use Border instead.”.Well, unfortunately, it is not possible to simply replace Frame with Border. Frame was somehow a little easier to use. Simply make a frame with rounded corners.That’s not “out-of-the-box” with Border.So let’s take a look at…

  • .NET 9.0 – .NET Maui von Frame zu Border

    Seit .NET 9 warnt der Compiler „Frame“ ist veraltet: „Frame is obsolete as of .NET 9. Please use Border instead.“. Nun gut leider geht es mit einfachen austauschen von Frame zu Border leider nicht. Frame war irgendwie ein wenig einfacher in der Handhabung

  • As a little finger exercise, I thought that a Visual Studio extension that explains the code would be good – thanks to OpenAI, that shouldn’t be a problem. And it wasn’t. First, I installed the Extensibilty Template Pack 2022 for Visual Studio 2022.Then I could get started: Firstly, I added a tool window. A tool…