MySQL What is MySQL? MySQL is the most used database software in Open Source. It is developed and maintained by T.C.X DataKonsult AB of Stockholm, Sweden. MySQL is extremely fast. If you need speed then MySQL is probably your best choice, if you need some of the extra features that PostgreSQL can offer you should use PostgreSQL. Anything is not perfect. MySQL does not support transactions, stored procedures, triggers, foreign keys, and views at the moment. PostgreSQL has some more advanced features like user-defined types, triggers, rules and some transaction support. But it is really stable and reliable relational database software, which is proved by millions of users around the world. Installation of MySQL
Start MySQL
Tutorial
Web Sites Official Site Transaction The main reason we went with atomic operations as opposed to transactions is that by doing this we could apply many speed optimizations that would not otherwise have been possible. Lastly, in situations where integrity is of highest importance, MySQL's current features allow for transaction-level or better reliability and integrity. If you lock tables with LOCK TABLES, all updates will stall until any integrity checks are made. If you only obtain a read lock (as opposed to a write lock), then reads and inserts are still allowed to happen. The new inserted records will not be seen by any of the clients that have a READ lock until they relaease their read locks. With INSERT DELAYED you can queue inserts into a local queue, until the locks are released, without having to have the client wait for the insert to complete. |