====== getTableCasing ====== ~~NOTOC~~ == See Also == [[v5:dictionary:settablecasing|setTableCasing()]] == Syntax From ADOdb 6.0 *== int getTableCasing() * This feature is supported in the IBM DB2 driver from version 5.21.0 ===== Description ===== ''getTableCasing()'' is a helper method that returns the currently set table casing value. ===== Options ===== The following options are available ^Constant^Value^Description^ |TABLECASE_LOWER|0|Table names are converted to lower case| |TABLECASE_UPPER|1|Table names are converted to upper case| |TABLECASE_DEFAULT|2|No case conversion on input table names is performed| The default value is TABLECASE_DEFAULT. ===== Usage ===== /* * Connection to DB2 database assumed */ print $db->getTableCasing(); /* * Prints: 2 */