show/hide this revision's text 2 Minor edit: grammar/spelling/case/punctation/etc.

Smell: Query query in a program that is either "SELECT *" or an insert without column names.

Problem: If if the structure of the table changes, the code will break.

Solution: Be be explicit about what columns are being selected or inserted.

show/hide this revision's text 1

Smell: Query in a program that is either "SELECT *" or an insert without column names

Problem: If the structure of the table changes, the code will break.

Solution: Be explicit about what columns are being selected or inserted.

    Post Made Community Wiki by Community