public class MariaDBDSL extends DSL
SQLDialect.MARIADB
specific DSL.Modifier and Type | Method and Description | |||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
static Field<String> |
aesDecrypt(Field<String> cryptString,
Field<String> keyString)
Get the MariaDB-specific
AES_DECRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
aesDecrypt(String cryptString,
String keyString)
Get the MariaDB-specific
AES_DECRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
aesEncrypt(Field<String> string,
Field<String> keyString)
Get the MariaDB-specific
AES_ENCRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
aesEncrypt(String string,
String keyString)
Get the MariaDB-specific
AES_ENCRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
compress(Field<String> string)
Get the MariaDB-specific
COMPRESS() function |
|||||||||||||||||||||||||||||||
static Field<String> |
compress(String string)
Get the MariaDB-specific
COMPRESS() function |
|||||||||||||||||||||||||||||||
static Field<String> |
decode(Field<String> cryptString,
Field<String> keyString)
Get the MariaDB-specific
DECODE() function
Don't mix this up with the various DSL.decode() methods! |
|||||||||||||||||||||||||||||||
static Field<String> |
decode(String cryptString,
String keyString)
Get the MariaDB-specific
DECODE() function
Don't mix this up with the various DSL.decode() methods! |
|||||||||||||||||||||||||||||||
static Field<String> |
desDecrypt(Field<String> cryptString)
Get the MariaDB-specific
DES_DECRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
desDecrypt(Field<String> cryptString,
Field<String> keyString)
Get the MariaDB-specific
DES_DECRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
desDecrypt(String cryptString)
Get the MariaDB-specific
DES_DECRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
desDecrypt(String cryptString,
String keyString)
Get the MariaDB-specific
DES_DECRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
desEncrypt(Field<String> string)
Get the MariaDB-specific
DES_ENCRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
desEncrypt(Field<String> string,
Field<String> keyString)
Get the MariaDB-specific
DES_ENCRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
desEncrypt(String string)
Get the MariaDB-specific
DES_ENCRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
desEncrypt(String string,
String keyString)
Get the MariaDB-specific
DES_ENCRYPT() function |
|||||||||||||||||||||||||||||||
static Field<String> |
encode(Field<String> string,
Field<String> keyString)
Get the MariaDB-specific
ENCODE() function |
|||||||||||||||||||||||||||||||
static Field<String> |
encode(String string,
String keyString)
Get the MariaDB-specific
ENCODE() function |
|||||||||||||||||||||||||||||||
static <E extends Enum<E> & EnumType> |
enumType(Class<E> type,
int index)
Get a field based
EnumType by its MariaDB-specific index
If your MariaDB enum type contains these three values:
A, B, C , then this will be the mapping of indexes to
values:
Copyright © 2013. All Rights Reserved. |