How to view SQL query behind .NET Windows Form (EXE)?

Asked By 0 points N/A Posted on -
qa-featured

I have windows application having button on it. Behind that button a SQL query is written. Now when you press the button that query executes. Is there any way to see the query written behind the button, if source code is not available?

SHARE
Best Answer by Head Jonathon
Answered By 0 points N/A #92738

How to view SQL query behind .NET Windows Form (EXE)?

qa-featured

Hi Nadeem,

If the source code is unavailable then it is almost impossible to find the query written behind. Imagining the application was developed using high end programming like .Net, it is not possible to find the query written behind, the reason is that the source code written in the IDE of .Net will be compiled into C++ kind of code and then encrypted. Hence, if you are in need to extract the code you will need to go two levels back.

Best Answer
Best Answer
Answered By 0 points N/A #92739

How to view SQL query behind .NET Windows Form (EXE)?

qa-featured

Hi Nadeem,

We have the possibility to extract useful information like SQL query without having the source code for any application. I have below the link of an article that shows how to extract the SQL query without a source code. For this you should have SQL Server Management Studio .There you can find step by step instructions and commands used to extract the details. See it here.

If you still have problems on loading please feel free to contact.

Hope this help!

Related Questions