What are some real world practices students should know?

Started by
10 comments, last by swiftcoder 10 years, 10 months ago

SQL and how to program. It's alarming how many I've personally interviewed who can't write a simple CRUD application without hand holding.

Sorry for being a little off topic, but are these people interviewing for web-related work?

Everything touches databases these days. Web apps, desktop tools, mobile games, the lot.

Even non-networked applications often talk to a local SQLite instance...

Ew...

"I AM ZE EMPRAH OPENGL 3.3 THE CORE, I DEMAND FROM THEE ZE SHADERZ AND MATRIXEZ"

My journals: dustArtemis ECS framework and Making a Terrain Generator

Advertisement

Even non-networked applications often talk to a local SQLite instance...

Ew...

It's not as bad as you think. If you want to store indexed, searchable data, then an existing database implementation should probably be your first choice.

Even many system services we all take for granted are backed by these technologies. For example, both Android's settings database, and iOS/Mac's Core Data infrastructure. are each just an SQLite database under the covers.

Tristam MacDonald. Ex-BigTech Software Engineer. Future farmer. [https://trist.am]

This topic is closed to new replies.

Advertisement