korma.config
set-delimiters
(set-delimiters & cs)Set the global default for field delimiters in connections. Delimiters can either be a string or a vector of the start and end: (set-delimiters "`") (set-delimiters ["[" "]"])
set-naming
(set-naming strategy)Set the naming strategy to use. The strategy should be a map with transforms
to be applied to field names (:fields) and the keys for generated maps (:keys)
e.g:
(set-naming {:keys string/lower-case :fields string/upper-case})