Jump to content

MySQL: Difference between revisions

From EDM2
No edit summary
mNo edit summary
Line 15: Line 15:
==Alternatives==
==Alternatives==
*[[Postgresql]] - Also open source and multi-platform, much stronger transaction and data integrity capabilities.  
*[[Postgresql]] - Also open source and multi-platform, much stronger transaction and data integrity capabilities.  
*[[SQLite]] - If your database is primarily for web use and only does limited writing to file, i.e. primarily handles database reads, this can be much faster and takes up considerably less resources. Can be run from a  
*[[SQLite]] - If your database is primarily for web use and only does limited writing to file, i.e. primarily handles database reads, this can be much faster and takes up considerably less resources. Can be run from a memory based disk if dataset is small.


[[Category:Tools]][[Category:Open Source Software]][[Category:Databases]][[Category:Software written in C]][[Category:MS Windows Tools]][[Category:Linux Tools]][[Category:BSD Tools]][[Category:Solaris Tools]][[Category:MAC OSX Tools]][[Category:AIX Tools]][[Category:System i Tools]] [[Category:QNX Tools]]
[[Category:Tools]][[Category:Open Source Software]][[Category:Databases]][[Category:Software written in C]][[Category:MS Windows Tools]][[Category:Linux Tools]][[Category:BSD Tools]][[Category:Solaris Tools]][[Category:MAC OSX Tools]][[Category:AIX Tools]][[Category:System i Tools]] [[Category:QNX Tools]]

Revision as of 19:28, 4 December 2014

Description

Open source multi-platform SQL compatible, multi user database. Although it lacks strong transaction and data integrity capabilities and despite long standing corruption problems with Unicode and other codepages larger than 256 characters it has become a de-facto standard for database use on the web.

Has been forked by one of the original authors into a product called MariaDB.

Versions

Links

License

  • Available in both commercial version and open source version known as the "community edition" that is licensed under the GPL v2.

Alternatives

  • Postgresql - Also open source and multi-platform, much stronger transaction and data integrity capabilities.
  • SQLite - If your database is primarily for web use and only does limited writing to file, i.e. primarily handles database reads, this can be much faster and takes up considerably less resources. Can be run from a memory based disk if dataset is small.