Re: [pmapper-users] search in postgis layer is always with wildcard

2007-10-16 Thread Armin Burger
You need to read the docs. - wildcard="0" means that the query is *always* performed in a "non-exact" way, applying regex style pattern matching. In other words: the query is always performed as if the user had typed wildcards. For a user typed string "pippo", in regex notation this would be da

[pmapper-users] search in postgis layer is always with wildcard

2007-10-16 Thread ivan minčík
Armin, I found that the search in postgis layer is always with wildcard. It is not respecting wildcard="0" or wildcard="1" in search.xml . I just temporary replaced $qs .= " $valoperator $f ~* '$wc1$val$wc2' " ; by $qs .= " $valoperator $f = '$val' " ; to get it working without the wildcar