<div dir="ltr"><div>I enconter the following pattern frequently (simplified):<br><br></div>SQL: <br>Select * From Customers Where FieldX = 1<br><div><br></div><div>Later i need a similar query that uses a different filter like<br></div><div><br>Select * From Customers Where FieldX = 1 and FieldY = :paramy<br><br></div><div>Is there any code that given a SQL Template would generate the second filter when paramy is available and keep blank when not available?<br><br></div><div>Like<br>Select * From Customers Where FieldX = 1 ${paramtemplate paramy}<br><br></div><div>The param not necessarily have to be in TParams, in my case the param is both in a JSON object and in TParams <br><br></div><div>If there's not in pascal, someone knows such templating in another languages? The hard part is getting a flexible and functional syntax<br></div><div><br></div><div>Luiz<br></div></div>