hi,
I just had a quick play with one of my soapui projects.
I already had a Property created in the Properties step with name = SessionNumber, value = 'S12345'
I just created a second property in the Properties step with the name 'SessionNumberWithoutTheS', value = '12345'
Originally I had the following query (which Ive simplified quite a bit) to
select * from Session where SessionNumber = '${Properties#SessionNumber}'
I changed the query above to the following:
select * from Session where SessionNumber like '%${Properties#SessionNumberWithoutTheS}'
So the multicharacter wildcard is at the front (in my example but you could move it to the other side of the propertyexpansion if necessary) and i successfully retrieved the Session record I was searching for
It took several seconds - because I'm using a like rather than an =, you can speed this up slightly by using the single character wildcard '_' e.g. '_${Properties#SessionNumberWithoutTheS}' instead of the % symbol
i had a look around - noticed your post on stackoverflow! :) - and I noticed the syntax sometimes included a colon ':' and other times didn't.
I haven't' nailed down why some posts use this.
Where are you storing the property? As you can see from above - I was storing the Property in the properties step and the above syntax works
hope this helps!
richie