Quick SQL statement formatting for development IDE
I would like to have my current SQL query be copied to the clipboard and formatted for pasting in the Visual Studio IDE. Example:
Select * from MyTable
would get copied into the clipboard as:
String sSQL = "Select * from MyTable";
Obviously larger statements are more complex.
3
votes
Marc Foulke
shared this idea
-
Marc Foulke commented
I created a console app to plug in to Visual Studio to do this. If anyone wants it, you're welcome to it.