|
|
|
|
An Introduction to SQLite
Richard Hipp ABSTRACT SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine. SQLite implemen...
|
|
|
Database Refactoring
Like other leaders in the Agile community, Scott Ambler is passionate about expanding Agile practices to include all contributors to software success. ...
|
|
|
|
|
A Googly MySQL Cluster Talk
Stewart Smith Stewart Smith works for MySQL AB as a software engineer working on MySQL Cluster. He is ... all ยป an active member of the free and open...
|
|
|
Evolving your database schema without a sweat
Before you know it, you'll have data that you care about in your application. Which makes adding, removing, or changing the schema an error-prone, time-consuming, and frustrating process. That is, unless you're using Ruby on Rails. In 20 minutes, you'll learn all about how database migrations can mak...
|
|
|
Dangers of Model in Session
Be careful when storing a model in a session. It will behave differently than you expect and can easily get out of sync with the database. Instead of storing the model directly in the session, store the id to the model and use that to fetch it from the database.
|
|
|
|