[Modeling-cvs] ProjectModeling/Modeling/doc/UserGuide ManipulatingGraphOfObjects.tex,1.15,1.16
Status: Abandoned
Brought to you by:
sbigaret
From: <sbi...@us...> - 2003-07-24 12:07:31
|
Update of /cvsroot/modeling/ProjectModeling/Modeling/doc/UserGuide In directory sc8-pr-cvs1:/tmp/cvs-serv29656/doc/UserGuide Modified Files: ManipulatingGraphOfObjects.tex Log Message: Fixed bug #776592: was impossible to add raw '*' and '?' characters in a LIKE statement Index: ManipulatingGraphOfObjects.tex =================================================================== RCS file: /cvsroot/modeling/ProjectModeling/Modeling/doc/UserGuide/ManipulatingGraphOfObjects.tex,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ManipulatingGraphOfObjects.tex 17 Jul 2003 13:41:12 -0000 1.15 --- ManipulatingGraphOfObjects.tex 24 Jul 2003 12:07:25 -0000 1.16 *************** *** 230,233 **** --- 230,243 ---- \end{verbatim} + + Last, if you want to add raw \code{'*'} and \code{'?'} characters in a like + pattern, escape them. For example, this fetchs all books whose title ends with + \code{'here?'}: + + \begin{verbatim} + objects=ec.fetch('Book', qualifier='title like "*here\?"') + \end{verbatim} + + \subsection{Equality, comparisons, {\tt in} and {\tt not in}\label{ec-fetch-operators}} When building your qualifiers, you can use the following operators: |