This is one of the reasons why I can't take most of the cameras on the cellphones seriously yet. Especially the commonly used CMOS-based ones. The image sensor scanning the landscape has takes certain time, even with sufficient lighting, as this photo I took on a day inside a car travelling around 70km/h shows. The cellphone used was CP-X501.
The image is actually quite crisp, so the shutter speed was quite fast, but the sensor scanning couldn't keep up with the fast-moving objects, resulting in a humourously warped shape for the box and the tree. Normal digital cameras, which use CCD, don't exhibit this problem. To this day I carry a separate digital camera on the belt to take quick photos and videos; my cellphone is mostly used for what it's supposed to do: make/get calls.
MySQL documentation gives some examples of creating users in MySQL. Among the examples are creating users that only have access to a specific database, or 'tied-to-database', as I say. This is preferred from a security standpoint because you can avoid using root to access services like s9y and use this 'limited' user instead. Let's look at one of the examples in there.
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP ON bankaccount.* TO 'custom'@'localhost' IDENTIFIED BY 'obscure';
This is supposed to create a user called 'custom' on the 'localhost' domain that has the password of 'obsecure' and can only access 'bankaccount' database. Now this looks alright, but it poses a bit of problem with s9y.