Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.expressionevaluator / org.gvsig.expressionevaluator.lib / org.gvsig.expressionevaluator.lib.impl / src / main / resources / org / gvsig / expressionevaluator / functions / en / DECODE.json @ 44110

History | View | Annotate | Download (488 Bytes)

1
{
2
    "name": "DECODE",
3
    "group": "String",
4
    "template": "DECODE({{data}}, 'hex')",
5
    "description": [
6
      "Decode binary data from textual representation in string.\n",
7
      "Supported formats are: base64, hex.\n"
8
    ],
9
    "args": [
10
          "data - A string value with the data to be converted",
11
          "format - A string value indicating the format of the input data. The default value is 'hex'."
12
    ],    
13
    "returnType": "Byte array",
14
    "sqlCompatible": true
15
}