<?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: Ashish Srivastava</title>
    <description>The latest articles on DEV Community by Ashish Srivastava (@ashish_srivastava_e6b8ecc).</description>
    <link>https://dev.to/ashish_srivastava_e6b8ecc</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3848403%2F4bc880a0-54d5-445d-bbd4-96b16db4440f.png</url>
      <title>DEV Community: Ashish Srivastava</title>
      <link>https://dev.to/ashish_srivastava_e6b8ecc</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ashish_srivastava_e6b8ecc"/>
    <language>en</language>
    <item>
      <title>🚀 DB Explorer 3.0.1 — The AI‑First SQL Editor You’ll Want to Try</title>
      <dc:creator>Ashish Srivastava</dc:creator>
      <pubDate>Fri, 10 Apr 2026 21:59:09 +0000</pubDate>
      <link>https://dev.to/ashish_srivastava_e6b8ecc/db-explorer-301-the-ai-first-sql-editor-youll-want-to-try-2dlm</link>
      <guid>https://dev.to/ashish_srivastava_e6b8ecc/db-explorer-301-the-ai-first-sql-editor-youll-want-to-try-2dlm</guid>
      <description>&lt;p&gt;Developers spend a surprising amount of time writing SQL, debugging queries, and navigating schemas.&lt;br&gt;
DB Explorer 3.0.1 aims to change that.&lt;br&gt;
This release introduces a fully schema‑aware AI SQL Generator with support for OpenAI, Claude, DeepSeek, Gemini, and custom endpoints.&lt;br&gt;
Other highlights:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Multi‑database support&lt;/li&gt;
&lt;li&gt;Execution plan viewer&lt;/li&gt;
&lt;li&gt;Health dashboard&lt;/li&gt;
&lt;li&gt;Multi‑tab SQL editor&lt;/li&gt;
&lt;li&gt;13 themes&lt;/li&gt;
&lt;li&gt;JVM‑bundled builds
If you work with databases daily, this tool is worth exploring.
We’re actively collecting feedback to shape the next version.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://sourceforge.net/projects/db-explorer/" rel="noopener noreferrer"&gt;https://sourceforge.net/projects/db-explorer/&lt;/a&gt; &lt;/p&gt;

</description>
      <category>sql</category>
      <category>database</category>
      <category>postgres</category>
      <category>dataengineering</category>
    </item>
    <item>
      <title>I built a free desktop SQL client with a live database health dashboard</title>
      <dc:creator>Ashish Srivastava</dc:creator>
      <pubDate>Sat, 28 Mar 2026 23:50:50 +0000</pubDate>
      <link>https://dev.to/ashish_srivastava_e6b8ecc/i-built-a-free-desktop-sql-client-with-a-live-database-health-dashboard-16om</link>
      <guid>https://dev.to/ashish_srivastava_e6b8ecc/i-built-a-free-desktop-sql-client-with-a-live-database-health-dashboard-16om</guid>
      <description>&lt;h2&gt;
  
  
  What is DB Explorer?
&lt;/h2&gt;

&lt;p&gt;DB Explorer is a free, open desktop database client built in Java. It supports &lt;br&gt;
PostgreSQL, MySQL/MariaDB, Oracle, SQL Server, SQLite, and AWS DynamoDB — all from &lt;br&gt;
one tool, with no subscription, no telemetry, and no account required.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's new in v2.1
&lt;/h2&gt;

&lt;p&gt;The big addition is a &lt;strong&gt;live Database Health Dashboard&lt;/strong&gt;. When you enable it for a &lt;br&gt;
connection, it opens a dedicated background JDBC connection (separate from your &lt;br&gt;
query connection) and polls your database's own system views on a configurable &lt;br&gt;
interval (5–30 seconds).&lt;/p&gt;

&lt;p&gt;What it shows:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Active sessions&lt;/strong&gt; — pulled from &lt;code&gt;pg_stat_activity&lt;/code&gt;, &lt;code&gt;SHOW PROCESSLIST&lt;/code&gt;, 
&lt;code&gt;v$session&lt;/code&gt;, &lt;code&gt;sys.dm_exec_sessions&lt;/code&gt; depending on your DB. Your own session is 
highlighted.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Server stats&lt;/strong&gt; — cache hit ratios, commits, rollbacks, wait events&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Connection health&lt;/strong&gt; — green/red indicator, reconnect count, last check timestamp&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;JVM resources&lt;/strong&gt; — heap usage bar (amber &amp;gt;70%, red &amp;gt;90%), thread count, GC stats&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SQL warnings log&lt;/strong&gt; — circular buffer of the last 100 warnings&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The dashboard is opt-in and disabled by default. Stopping it immediately closes the &lt;br&gt;
background thread and JDBC connection — no background activity unless you turn it on.&lt;/p&gt;

&lt;h2&gt;
  
  
  Download
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://sourceforge.net/projects/db-explorer/" rel="noopener noreferrer"&gt;https://sourceforge.net/projects/db-explorer/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It's a single fat JAR — just &lt;code&gt;java -jar db-explorer-2.1.jar&lt;/code&gt; and you're running.&lt;/p&gt;

&lt;p&gt;Feedback welcome, especially from Oracle and SQL Server users.&lt;/p&gt;

</description>
      <category>database</category>
      <category>java</category>
      <category>showdev</category>
      <category>sql</category>
    </item>
  </channel>
</rss>
