Imagine that I have a database with Name and age and i want to insert a person to that database so I'll do:
SQL="INSERT INTO Person(Name,Age) VALUES ('" & Name & "'," & Age &")"
And in my interface I Insert the Name: Nick and age:25.
How can I see in my interface what SQL is doing for example:
INSERT INTO Person(Nick,25)
PS: Programming this in classic asp. I've seen it done through a simple Response.Write, but I don't remember how it was done.
Hope it was clear to understand, and thank you for all the help