oracle-helpers
    Preparing search index...

    Interface EnquoteNameOptions

    interface EnquoteNameOptions {
        alwaysEnquote?: boolean;
        capitalize?: boolean;
    }
    Index
    alwaysEnquote?: boolean

    If true, the input string will always be run through oracledb.enquoteName instead of checking if its a valid SQL identifier (simple or complex) first

    false
    
    capitalize?: boolean

    Indicates whether the input string is converted to uppercase before quoting. The default is true.

    true