In constrast to
http://programmers.stackexchange.com/questions/123591/database-design-good-practices
I wanted to ask:
What are the top worst practises you encountered when having to work with other people's database application code & databases ?
Mine so far are:
- Not putting any foreign key constrains in the database (for ease of web forms development...)
- SQL queries by string concatenation (no escaping of ', no parameters)
- Usage of thread-unsafe code (with static variables) to decrypt the database password...
