|
trasc Newbie
Joined: 16 Oct 2003 Posts: 7 Location: USA
|
Posted: Thu Jun 03, 2004 7:11 pm
mapquery problem |
I'm trying to make an alias that lists all the rooms that
have a certain string in their UserStr field and I'm having
a lot of trouble.
This is what I've got so far:
room_list = %mapquery( {[UserStr] LIKE '%favorite%'})
I'm getting back a list of rooms that don't even have the specified string in that field...I'm not sure why!
Any suggestions? |
|
|
|
Vijilante SubAdmin
Joined: 18 Nov 2001 Posts: 5182
|
Posted: Thu Jun 03, 2004 10:41 pm |
Try quotes instead of braces.
room_list = %mapquery( "[UserStr] LIKE '%favorite%'") |
|
|
|
|
|