
tuxedobob
6327
13
5
Lazy programmer

I'm going to be using this for an internal project. Other programmers might enjoy dropping this in their projects too.
Jan 19, 2015 3:37 PM
tuxedobob
6327
13
5
I'm going to be using this for an internal project. Other programmers might enjoy dropping this in their projects too.
HungryKanamit
"This is very important data, I have no backup" -dumb customers
justwatching
I fire programmers who don't check their work. Our whole team goes down in the customer's eyes.
pallentx
SQL is just a language to query the db. Could you just query to see if its in there?
tuxedobob
I could. Or I could click the link and see if it's on the page it belongs on. It's not exactly important if it fails. :)
Justacityboybornandraisedinsouthdetroit
Ew, SQL is the bane of my existence..
TheKnowing1
Why? It's not like it's difficult.
Justacityboybornandraisedinsouthdetroit
its tedious as shit and most compilers dont have syntax and error checkers that are really helpful. Most just say there is an error and
Justacityboybornandraisedinsouthdetroit
not what or where it is.
TheKnowing1
You should rarely be doing SQL by hand, you should be using Hibernate or some variant depending on language.
Justacityboybornandraisedinsouthdetroit
I used Netbeans when I did my project, very little by hand. But what I did by hand had a few errors and I was only given a null pointer
Justacityboybornandraisedinsouthdetroit
Even though the actual error wasnt a nullpointer.
HUFLPUF
Are you not using a transaction?
tuxedobob
Not really important enough.
HUFLPUF
Inconsistent data is ok with your application or just that particular trip to the database?
tuxedobob
In practice, it's essentially a single-user system. There's no risk of dirty reads.