2
(click on this box to dismiss)
How to find out if the database is case sensitive or not regarding table names ?
In MySQL, in order to find out if the database table names are case sensitive, you can use "SHOW VARIABLES LIKE 'lower_case_table_names' ". What's the equivalent for CUBRID ?
1
Answer
1
I don't think there is an SQL syntax to query this. But basically CUBRID is case-insensitive. Perhaps this is why there is no need for such a syntax.
A similar question has already been answered. See Case-insensitive identifiers and object names.
asked 8 months ago
viewed 351 times