Searches for a parameter with the specified name.
function ParamByName(const Value: string): TUniParam;
Call the ParamByName method to find a parameter with the name passed as Name.
If a match is found, ParamByName returns the parameter. Otherwise, it raises an exception.
UniSQL1.Execute;
Edit1.Text := UniSQL1.ParamByName('Contact').AsString;