Jump to content

What is best in a MySQL database - Capitals or lower letters


TeddyKiller

Recommended Posts

Title is self explanatry.

Some people insert data into a database with whatever values the "user" is inserting. eg: My, my

Should the database always consist of strtolower for all values?

 

Also, should the database tables, and names be in lowercase too?

 

Whats the difference to using lowercase or highercase.

The data in your tables is a choice the designer of the database should pick.

 

It would for example be SMART to store usernames (and password) case sensitive. Just like the user entered them.

 

That way you can have a user "TeddyKiller", "TEDDYKILLER", "teddykiller", etc which are all different users...

If you dont want that to happen, you should make a choice to store them upper- or lowercase.

 

I think the same is true for database tables and fieldnames, make a choice, and stay with it

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.