Executing SQL the Right Way in PowerShell
We all know that using string concatenation (or substitution) in SQL is a “bad thing”. If you google “SQL Injection”, you’ll find hundreds of pages that tell you not to do things this way and that you need to use parameterized queries. However, I still see a lot of code in PowerShell that does this: …
Continue reading ‘Executing SQL the Right Way in PowerShell’ »