summaryrefslogtreecommitdiffstats
path: root/user_guide_src
diff options
context:
space:
mode:
authorJohn de Kroon <johndekroon@gmail.com>2018-09-03 11:24:45 +0200
committerGitHub <noreply@github.com>2018-09-03 11:24:45 +0200
commitc0c9ebf077e23b18bf94225154671feab1369466 (patch)
treecf0a5d59070f85e1619b5bba951b14acd83e74c4 /user_guide_src
parent8abd21b17e9da1f3808f537643bfeaba0a790837 (diff)
Documented undocumented feature
The 'none' option is a valid option, which was documented in the 2.x documentation. I added it since it is still supported in 3.x.
Diffstat (limited to 'user_guide_src')
-rw-r--r--user_guide_src/source/database/query_builder.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/user_guide_src/source/database/query_builder.rst b/user_guide_src/source/database/query_builder.rst
index 860b34d4c..a33c7073b 100644
--- a/user_guide_src/source/database/query_builder.rst
+++ b/user_guide_src/source/database/query_builder.rst
@@ -358,13 +358,14 @@ searches.
// WHERE `title` LIKE '%match%' ESCAPE '!' AND `body` LIKE '%match% ESCAPE '!'
If you want to control where the wildcard (%) is placed, you can use
- an optional third argument. Your options are 'before', 'after' and
+ an optional third argument. Your options are 'before', 'after', 'none' and
'both' (which is the default).
::
$this->db->like('title', 'match', 'before'); // Produces: WHERE `title` LIKE '%match' ESCAPE '!'
$this->db->like('title', 'match', 'after'); // Produces: WHERE `title` LIKE 'match%' ESCAPE '!'
+ $this->db->like('title', 'match', 'none'); // Produces: WHERE `title` LIKE 'match' ESCAPE '!'
$this->db->like('title', 'match', 'both'); // Produces: WHERE `title` LIKE '%match%' ESCAPE '!'
#. **Associative array method:**