I am trying to debug stored procedure calls from within VS2012 (SSDT) when the calls are made from a PHP web app.
- SQL Server and IIS are running on a separate machine in my workgroup (i.e. not domain)
- I can manually debug remote stored procedures from my client machine using Visual Studio and the SQL Server Object Explorer
- No firewall rules in place (both machines' firewall are disabled at the moment)
- I am running VS, the SQL Server service, and the remote debugger all as the same Windows user name (in this case, "Administrator")
If I open a stored proc in VS, either from within my project or from the SQL Server Object Explorer, and set a breakpoint in that procedure, I want the debugger to halt on my breakpoint if that proc is called from my PHP web app.
I did see this post, but it doesn't get into specifics with VS2012 and also only references .NET app.
Is this kind of debugging even possible with a PHP app?