~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Daniel Nichter
  • Date: 2011-10-23 16:01:37 UTC
  • mto: This revision was merged to the branch mainline in revision 2448.
  • Revision ID: daniel@percona.com-20111023160137-7ac3blgz8z4tf8za
Add Administration Getting Started and Logging.  Capitalize SQL clause keywords.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. _function_dictionary_plugin:
 
2
 
 
3
Function Dictionary
 
4
===================
 
5
 
 
6
:program:`function_dictionary` creates the ``FUNCTIONS`` dictionary which lists
 
7
available functions.
 
8
 
 
9
.. _function_dictionary_loading:
 
10
 
 
11
Loading
 
12
-------
 
13
 
 
14
To load this plugin, start :program:`drizzled` with::
 
15
 
 
16
   --plugin-add=function_dictionary
 
17
 
 
18
.. seealso:: :ref:`drizzled_plugin_options` for more information about adding and removing plugins.
 
19
 
 
20
.. _function_dictionary_examples:
 
21
 
 
22
Examples
 
23
--------
 
24
 
 
25
List all available functions:
 
26
 
 
27
.. code-block:: mysql
 
28
 
 
29
   drizzle> SELECT * FROM DATA_DICTIONARY.FUNCTIONS;
 
30
   +-----------------------+
 
31
   | FUNCTION_NAME         |
 
32
   +-----------------------+
 
33
   | LOWER                 | 
 
34
   | LAST_INSERT_ID        | 
 
35
   | LTRIM                 | 
 
36
   | GREATEST              | 
 
37
   ...
 
38
 
 
39
.. _function_dictionary_authors:
 
40
 
 
41
Authors
 
42
-------
 
43
 
 
44
Brian Aker
 
45
 
 
46
.. _function_dictionary_version:
 
47
 
 
48
Version
 
49
-------
 
50
 
 
51
This documentation applies to **function_dictionary 1.0**.
 
52
 
 
53
To see which version of the plugin a Drizzle server is running, execute:
 
54
 
 
55
.. code-block:: mysql
 
56
 
 
57
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='function_dictionary'
 
58
 
 
59
Changelog
 
60
---------
 
61
 
 
62
v1.0
 
63
^^^^
 
64
* First release.