Problems with SQL Code in Solutions
When creating a Solution which requires SQL to be presented into it, upon saving the solution the SQL code gets re-assembled so the code is all out of order.
When typing in...
Select * from %Table% where %Field% = '%Result%'
/*
Check the Address in our database matches those found in the hotels website
to make sure you have the correct hotel
*/
Select * from %Table% where %Field% = %Result%
/*
Check if we already have a link set up
*/
It changes it too....
Select
/*
Check the Address in our database matches those found in the hotels website
to make sure you have the correct hotel
*/
* from %Table% where %Field% = '%Result%'
Select
/*
Check if we already have a link set up
*/
* from %Table% where %Field% = %Result%
New to ADSelfService Plus?