VisionThe project is for updating the values of parameters in SQL queries easier.
Quick StartThe main window

Here comes the result
Setting up connection strings with designated groups<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<!-- this groups the connection strings of Microsoft SQL Server -->
<!-- use comma (;) to separate different connection string names -->
<add key="sqlserver" value="MeetingRoom;AdventureWorks"/>
<!-- this groups the connection strings of Oracle databases -->
<!-- leave it blank if there is no related connection strings -->
<add key="oracle" value=""/>
<!-- connection strings -->
<add key="MeetingRoom"
value="Server=.\SQLExpress;Initial Catalog=MeetingRoom; Integrated Security=True;"/>
<add key="AdventureWorks"
value="Server=.\SQLExpress;Initial Catalog=AdventureWorks; Integrated Security=True;"/>
</appSettings>
</configuration>