Re: [Modeling-users] Questions and suggestions
Status: Abandoned
Brought to you by:
sbigaret
|
From: Sebastien B. <sbi...@us...> - 2003-06-12 11:41:07
|
I wrote:
> >>> q =3D qualifierWithQualifierFormat('toAddresses.zipCode like "4%"')
Ooops... such a qualifier should normally match '4\%', NOT '4' and any
characters after.
Hence:
1. to match character '4' followed by any characters, the qualifier string
should be: 'toAddresses.zipCode like "4*"'
=20
2. this was a bug in the postgresql adaptor layer: postgresql interprets
backslashes, so escaping '%' should be like: '\\%', NOT '\%'.
This bug is now corrected on CVS and will be in next release.
(it affects neither mysql nor sqlite)
-- S=E9bastien.
|