Top "Case-sensitive" questions

An operation is case sensitive when uppercase and lowercase characters are treated differently.

Case sensitive and insensitive like in SQLite

In SQLite it is possible to change the case sensitive behaviour of 'LIKE' by using the commands: PRAGMA case_sensitive_…

sqlite case-sensitive
How do I make jQuery Contains case insensitive, including jQuery 1.8+?

I'm trying to use "contains" case insensitively. I tried using the solution at the following stackoverflow question, but it didn't …

jquery contains case-sensitive case-insensitive
Is VB really case insensitive?

I'm not trying to start an argument here, but for whatever reason, it's typically stated that Visual Basic is case …

vb.net vba case-sensitive case-insensitive
SQL unique varchar case sensitivity question

I'm trying to populate a SQL table with a list of words. The table itself it pretty simple: CREATE TABLE …

mysql sql case-sensitive varchar unique-constraint
Are PHP functions case sensitive?

I was digging through some code, and I found some calls to mySQL_fetch_array. Is PHP case sensitive about …

php function case-sensitive
Is git not case sensitive?

In the first commitment of my partial called _Electronics it was written beginning with a capital letters, then I changed …

git version-control case-sensitive
SQL Server queries case sensitivity

I have this database: abcDEF ABCdef abcdef if I write: select * from MyTbl where A='ABCdef' how to get: ABCdef …

sql sql-server sql-server-ce case-sensitive
Case insensitive matching in Java switch-case statement

I was wondering if there is a way to perform case insensitive match in java switch case statement. the default …

java string switch-statement case-sensitive case-insensitive
Case-insensitive NSString comparison

Using this code I am able to compare string values. [elementName isEqualToString: @"Response"] But this compares case-sensitively. Is there a …

string cocoa nsstring case-sensitive
PHP & Case Sensitivity

In PHP, variable and constant names are case sensitive, while function names are not. As far as I am aware, …

php case-sensitive case-insensitive