I tried this:
from Table where (:par1 is null or col1 = :par1)
but it happens that
from Table where :par1 is null
always returns all the rows of the table, even if the :par1 is not null.
while
select * from table where col1 = 'asdf'
does not return any row.
I can't use native grammars because my application is supposed to run on different database engines
If your underlying database is Oracle then you can use the nvl function, I tried it and it worked for me.
Your use case can be diffrent and you can use the nvl function as per your requirement if the database is nvl, not sure about the implecation of the other databases, as I have used this code only for Oracle. Hope it helps.
The equivalent to the
nvl
command in HQL is thecoalesce
command.coalesce(a,b)
will returna
ifa
is not null, otherwiseb
.So you would want something on the lines of: