Named Parameters
Copy
Named Parameters can be passed into the SELECT SQL query. For example:
np:last_name=Kohl
They would map the Kohl value to the @last_name Named Parameter in the SELECT SQL:
SELECT * FROM [USER] WHERE last_name=@last_name
Named Parameters can be passed into the SELECT SQL query. For example:
np:last_name=Kohl
They would map the Kohl value to the @last_name Named Parameter in the SELECT SQL:
SELECT * FROM [USER] WHERE last_name=@last_name