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.
|
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. |
||||
|
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♦
|
||||
|
|
||||