PDOCASEUPPER
PDOCASEUPPER is a term used in discussions of PHP's PDO (PHP Data Objects) to describe the behavior of converting the case of column names in fetch results to upper case. It corresponds to the PDO attribute configuration PDO::ATTR_CASE with the value PDO::CASE_UPPER. When set, fetch results returned as associative arrays will have their column keys in uppercase, regardless of how the columns are named in the database or how the query is written.
Usage and configuration: You can apply this when creating a PDO instance or to a prepared statement.
Effect and limitations: The CASE_UPPER setting only changes the keys used for column names in fetch results;
See also: PDO, PDO::ATTR_CASE, PDO::CASE_UPPER, PDO::CASE_LOWER, PDO::CASE_NATURAL.