I have a report made in ireport 3.0.0 (JasperReport Template in ZUcker Reports) wich receives a string parameter from zucker report; this is the query report:

SELECT
accounts.`name` AS accounts_name,
accounts.`account_type` AS accounts_account_type,
accounts.`industry` AS accounts_industry,
accounts.`billing_address_street` AS accounts_billing_address_street,
accounts.`billing_address_city` AS accounts_billing_address_city,
accounts.`billing_address_country` AS accounts_billing_address_country
FROM
`accounts` accounts
WHERE
accounts.name >= $P{CUENTA_DESDE} and
accounts.name <= $P{CUENTA_HASTA}

The string parameter is selected from a user-defined query. In CUENTA_DESDE I have some strings like: Agencia "La buena suerte" or Kiosco "El grande", and the parameter in zucker report truncates as Agencia or Kiosco. Any idea to solucionate this? How to put quotes? Sorry for my english