Using SQLCOmmand to insert row in database. SQL Command is using parameters.
To get the query while debugging at Immediate window I use
?_cmd.CommandText
Result:
"UPDATE TABLE SET Smth=@Smth, Smth2=@Smth2 "
How to get complete query where I instead of @Smth and @Smth2 will have values read from parameters?