On Wed, 2010-02-24 at 09:16 +0100, Jørn Skjerven wrote: > I have tried the following query: > > query = SELECT action,text FROM blocked_accounts WHERE address = '%s'
Try query = SELECT concat(action,' ',text) FROM blocked_accounts ... (don't know the correct Syntax in MySQL to concatenate strings) - as a result, you should get ONE field for the "right hand side" of the access map... -stefan-