Search Results

1
vote
4answers
750 views

Multiple SQL Server connection strings in app.config file

Hi guys, I'm interested in displaying in a Windows Forms app a list of N radio buttons for the user to choose a target database server. I would like to add the SQL Server connection strings …
2
votes

How should i work in this scenario . Should I use Trigger or Leave on User to manage

I wouldnt use a trigger for something like this. Triggers are obscure and can be hard to debug for the developer. Use your tables and stored procedures to deal with the issue. Use triggers for when …