Search Results

0
votes

What’s your #1 way to be careful with a live database?

1 - Always create a backup before opening a connection when you know you will need to update or insert records. 2 - When writing an update statement ALWAYS write the WHERE clause first then …
4
votes

What real life bad habits has programming given you?

I think rather than programming, because the web has given me instant access to the information i need within a few seconds of typing into google. I expect answers from people to be just as consise …
0
votes

Improving code readability for SQL commands

This approach is fine for a small project, however for anything of significant size you should consider either a 3rd party library for constructing your queries or developing your own. The …
0
votes

To be nor not to be with duplicate models

There is not much value to be gained from re-writing the whole thing just because the architecture is not ideal. As you noted yourself it WILL be VERY costly. One approach would be to pick …