Skip to content

SQL capitalization options

Tako Lee edited this page Mar 2, 2024 · 7 revisions

1. Type in Delphi

TCaseOption = (coUppercase,coLowercase,coInitCap,coNoChange,coInitCapEachWord);

2. Type in Java

public enum TCaseOption {
	CoUppercase, CoLowercase, CoNoChange, CoInitCap
}

3. Unifrom Type definition

  • Type name: TFmtCase
  • Available values:
    • value: 0, text: uppper
    • value: 1, text: lower
    • value: 2, text: no_change
    • value: 3, text: init_cap
    • value: 4, text: init_cap_start_from_second_word
Clone this wiki locally