0 people following this project (follow)

Vision
The project is for updating the values of parameters in SQL queries easier.

Quick Start
The main window
Main.PNG
Here comes the result
Result.PNG

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>

Last edited Aug 6 2007 at 3:04 PM by samhuang, version 9