<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: rahib khan</title>
    <description>The latest articles on DEV Community by rahib khan (@rahib_khan).</description>
    <link>https://dev.to/rahib_khan</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4072284%2Fb06c01e3-1879-4f4e-b261-76d942eadbcc.png</url>
      <title>DEV Community: rahib khan</title>
      <link>https://dev.to/rahib_khan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rahib_khan"/>
    <language>en</language>
    <item>
      <title>Your app doesn't know when another program changed your database</title>
      <dc:creator>rahib khan</dc:creator>
      <pubDate>Tue, 11 Aug 2026 04:44:57 +0000</pubDate>
      <link>https://dev.to/rahib_khan/your-app-doesnt-know-when-another-program-changed-your-database-6nc</link>
      <guid>https://dev.to/rahib_khan/your-app-doesnt-know-when-another-program-changed-your-database-6nc</guid>
      <description>&lt;p&gt;I ran into this while working on a manufacturing app.&lt;/p&gt;

&lt;p&gt;One workstation could be showing old data while an ERP or another application had already changed the database.&lt;/p&gt;

&lt;p&gt;The usual solution? Click Refresh.&lt;/p&gt;

&lt;p&gt;Timers don't really solve it. Custom “something changed” tables don't work when another application writes directly to the database.&lt;/p&gt;

&lt;p&gt;But the database already knows when something changed.&lt;/p&gt;

&lt;p&gt;SQL Server has Change Tracking.&lt;br&gt;
SQLite has PRAGMA data_version.&lt;/p&gt;

&lt;p&gt;So I built DbSignal — a .NET library that turns those database capabilities into a simple change-feed API.&lt;/p&gt;

&lt;p&gt;The interesting part wasn't making every database look identical.&lt;/p&gt;

&lt;p&gt;It was being honest about what each database can actually tell you.&lt;/p&gt;

&lt;p&gt;Two providers, both proven: SQL Server and SQLite.&lt;/p&gt;

&lt;p&gt;PostgreSQL and MySQL are designed, but not implemented yet.&lt;/p&gt;

&lt;p&gt;Two proven beats four promised.&lt;/p&gt;

&lt;p&gt;🔗 GitHub: &lt;a href="https://github.com/rahibkhan44/DbSignal" rel="noopener noreferrer"&gt;https://github.com/rahibkhan44/DbSignal&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;📦 NuGet: DbSignal.SqlServer / DbSignal.Sqlite&lt;/p&gt;

&lt;p&gt;If you've ever had to tell users to “just refresh,” this might be useful.&lt;/p&gt;

</description>
      <category>dotnet</category>
      <category>csharp</category>
      <category>database</category>
      <category>sqlserver</category>
    </item>
  </channel>
</rss>
