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 …
1
vote
When you are abstracting your database records and datasets into objects, what does your object model look like?
No matter the size of your project I would say use an ORM :-P
but.....
Back in the days when there were no ORM libraries we used to manually pull all the fields out of a Java reco …
