user2858632
user2858632

Reputation: 9

Yii - Case-sensitivity of the table name, column in sql query

How to get rid of case-sensitive dependence in database query in Yii, using different ways to access the database, either through Active Record, DAO, and through the query designer.

Upvotes: 0

Views: 820

Answers (1)

user3004356
user3004356

Reputation: 880

First of all to avoid case sensitive dependence in database query, you need to make the database case insensitive by setting a flag in configuration file as in MySQL, Which will make all database queries case insensitive

Upvotes: 1

Related Questions