Author: mikedd Date: Thu Apr 2 19:24:01 2009 New Revision: 761392 URL: http://svn.apache.org/viewvc?rev=761392&view=rev Log: OPENJPA-975 clean up manual Modified: openjpa/branches/1.2.x/openjpa-project/src/doc/manual/ref_guide_dbsetup.xml Modified: openjpa/branches/1.2.x/openjpa-project/src/doc/manual/ref_guide_dbsetup.xml URL: http://svn.apache.org/viewvc/openjpa/branches/1.2.x/openjpa-project/src/doc/manual/ref_guide_dbsetup.xml?rev=761392&r1=761391&r2=761392&view=diff ============================================================================== --- openjpa/branches/1.2.x/openjpa-project/src/doc/manual/ref_guide_dbsetup.xml (original) +++ openjpa/branches/1.2.x/openjpa-project/src/doc/manual/ref_guide_dbsetup.xml Thu Apr 2 19:24:01 2009 @@ -1926,6 +1926,22 @@ languages, such as JDOQL. Defaults to "\\" (a single backslash in Java speak). + + + + + + SQL + + + RequiresSearchStringEscapeForLike + + +RequiresSearchStringEscapeForLike: +When true, the database requires an escape string for queries that use +LIKE. The escape string can be specified using +searchStringEscape. Defaults to true. + @@ -3217,44 +3233,6 @@ tables and delete constraints. - - - - - SQL - - - RequiresSearchStringEscapeForLike - - -RequiresSearchStringEscapeForLike: -When true, the database requires an escape string for queries that use -LIKE. The escape string can be specified using -searchStringEscape. Defaults to true. - - - - - - - SQL - - - SearchStringEscape - - -SearchStringEscape: -The default escape character used when generating SQL LIKE -clauses. The escape character is used to escape the wildcard meaning of the -_ and % characters. -Note: since JPQL provides the ability to define the escape character in -the query, this setting is primarily used when translating other query -languages, such as JDOQL. To not use any escape character, set the -RequiresSearchStringEscapeForLike property to -false. Defaults to "\\" (a single backslash -in Java speak). - -