Jump to content

MySQL: Difference between revisions

From EDM2
mNo edit summary
Ak120 (talk | contribs)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Image:Mysql.jpg|250px|right]]
[[Image:Mysql.jpg|250px|right]]
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.  
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]].
Has been forked by one of the original authors into a product called ''MariaDB''.


==Versions==
==Versions==
* Latest OS/2 version: [http://os2ports.smedley.id.au/index.php?page=mysql-5-1 MySQL 5.1.7.2] - Sept 2013
* 5.0.67 (2008-08-09)
====Administrative tools and utilities====
* [http://os2ports.smedley.id.au/index.php?page=mysql-5-1 MySQL 5.1.72] - Sep 2013
* [[phpMyAdmin]] - Administration over WWW - Requires [[PHP]] - Open source - Current
* 5.1.73 (2013-12-03) - end of support
* [[REXX/SQL]] - SQL access for [[REXX]] - Open source - Current.


====OS/2 text editors with MySQL support====
* 8.0.13 (2018-10-22)
* [[jEdit]] - Java based editor - MySQL syntax highlighting built in - Current.
* MySQL Community Server 8.0.32


==Links==
===Administrative tools and utilities===
* [http://www.mysql.com MySQL homepage]
* [[phpMyAdmin]] - Administration over WWW - Requires [[PHP]] - Open source
* [[REXX/SQL]] - SQL access for [[REXX]] - Open source
 
===Text editor support===
* FTE
* [[jEdit]] - Java based editor - MySQL syntax highlighting built in


==License==
==License==
Line 26: Line 30:
* [[Antony T. Curtis]] (Worked on early OS/2 ports and was later a part of the MySQL dev team)
* [[Antony T. Curtis]] (Worked on early OS/2 ports and was later a part of the MySQL dev team)


[[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:SQL]]
==Publications==
* Paul DuBois: ''MySQL Cookbook'' - O'Reilly 2005, ISBN 059652708X
 
==Links==
* [http://www.mysql.com MySQL homepage]
 
[[Category:RDBMS]][[Category:Software written in C]][[Category:SQL]]

Latest revision as of 03:51, 11 February 2023

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

  • 5.0.67 (2008-08-09)
  • MySQL 5.1.72 - Sep 2013
  • 5.1.73 (2013-12-03) - end of support
  • 8.0.13 (2018-10-22)
  • MySQL Community Server 8.0.32

Administrative tools and utilities

Text editor support

  • FTE
  • jEdit - Java based editor - MySQL syntax highlighting built in

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.

Authors

  • Antony T. Curtis (Worked on early OS/2 ports and was later a part of the MySQL dev team)

Publications

  • Paul DuBois: MySQL Cookbook - O'Reilly 2005, ISBN 059652708X

Links