0
votes
Your first serious programming project
Simple database system for my father's survey firm. Man I wish I could have used a SQL db engine at that time. I hand wrote the database engine in Turbo Pascal.
…
3
votes
How commonly do deadlock issues occur - in programming - not in the databases?
All depends on what you are coding. Traditional single threaded applications that do not use locking. Not really.
Multi-threaded code with multiple locks is what will cause deadlocks.
…
