To modify the sensitivity of table names in TDSQL-C MySQL version after initialization, you can adjust the lower_case_table_names system variable. This variable controls whether table names are stored in lowercase or preserve their original case, and it also affects how table names are compared.
SHOW VARIABLES LIKE 'lower_case_table_names';.my.cnf or my.ini) under the [mysqld] section:[mysqld]
lower_case_table_names=1
If you want to make table names case-insensitive:
lower_case_table_names=1
Changing lower_case_table_names after the database has been initialized can lead to issues if there are existing tables with names that conflict under the new sensitivity rules. It is recommended to set this variable correctly at the time of initialization to avoid such issues.
For cloud-based solutions, consider using Tencent Cloud's TDSQL-C service, which provides managed MySQL databases with flexible configuration options to suit your needs.