Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Pickup the SQLite core library 3.25.3 docs from upstream. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6c554c5ee20dab4cd9f370d02a5316e0 |
User & Date: | mistachkin 2018-11-06 00:27:35.788 |
Context
2018-11-06
| ||
00:29 | Update version history docs. check-in: d970797755 user: mistachkin tags: trunk | |
00:27 | Pickup the SQLite core library 3.25.3 docs from upstream. check-in: 6c554c5ee2 user: mistachkin tags: trunk | |
00:25 | Update SQLite core library to the 3.25.3 release. check-in: b881022edc user: mistachkin tags: trunk | |
Changes
Changes to Doc/Extra/Core/lang_corefunc.html.
︙ | ︙ | |||
220 221 222 223 224 225 226 | <dt><p><b>glob(<i>X</i>,<i>Y</i>)</b></dt><dd><p> The glob(X,Y) function is equivalent to the expression "<b>Y GLOB X</b>". Note that the X and Y arguments are reversed in the glob() function relative to the infix <a href="lang_expr.html#glob">GLOB</a> operator. Y is the string and X is the pattern. So, for example, the following expressions are equivalent: <blockquote><pre> | | | 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | <dt><p><b>glob(<i>X</i>,<i>Y</i>)</b></dt><dd><p> The glob(X,Y) function is equivalent to the expression "<b>Y GLOB X</b>". Note that the X and Y arguments are reversed in the glob() function relative to the infix <a href="lang_expr.html#glob">GLOB</a> operator. Y is the string and X is the pattern. So, for example, the following expressions are equivalent: <blockquote><pre> name GLOB '*helium*' glob('*helium*',name) </pre></blockquote> <p>If the <a href="c3ref/create_function.html">sqlite3_create_function()</a> interface is used to override the glob(X,Y) function with an alternative implementation then the <a href="lang_expr.html#glob">GLOB</a> operator will invoke the alternative implementation. </dd> <a name="hex"></a> |
︙ | ︙ |