~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/string_functions/docs/index.rst

  • Committer: Daniel Nichter
  • Date: 2011-08-13 20:41:38 UTC
  • mto: This revision was merged to the branch mainline in revision 2413.
  • Revision ID: daniel@percona.com-20110813204138-stxa89ca1t7cg1uy
Skeleton documentation for all plugins, more complete docu for first half of plugins.
Clean up plugin.ini titles and descriptions.
Reformat and reorganize root index.
Change Administrative to Administration and remove empty files (logging, etc.)
Add, fix, and tag documentation for functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
String Functions
 
2
================
 
3
 
 
4
The ``string_functions`` plugin provides these :doc:`/functions/overview`:
 
5
 
 
6
* :ref:`elt-function`
 
7
 
 
8
* :ref:`format-function`
 
9
 
 
10
* :ref:`quote-function`
 
11
 
 
12
* :ref:`regex-function`
 
13
 
 
14
.. _string_functions_loading:
 
15
 
 
16
Loading
 
17
-------
 
18
 
 
19
This plugin is loaded by default.  To stop the plugin from loading by
 
20
default, start :program:`drizzled` with::
 
21
 
 
22
   --plugin-remove=string_functions
 
23
 
 
24
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
 
25
 
 
26
.. _string_functions_authors:
 
27
 
 
28
Authors
 
29
-------
 
30
 
 
31
Brian Aker
 
32
 
 
33
.. _string_functions_version:
 
34
 
 
35
Version
 
36
-------
 
37
 
 
38
This documentation applies to **string_functions 1.0**.
 
39
 
 
40
To see which version of the plugin a Drizzle server is running, execute:
 
41
 
 
42
.. code-block:: mysql
 
43
 
 
44
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='string_functions'
 
45