With the new GA release 6.3.5 we finally also managed to bring MySQL Workbench to Github. This is something we planned for quite some time and now the repository is part of the MySQL group at Github. Go Workbench…
FOSDEM 2016 edition will be held January 30 and 31 in Brussels like every year since 2000.
The MySQL & Friends Devroom is back on Saturday from 9.00AM.
What is FOSDEM? It stands for the “Free and Open Source Software Developers’ European Meeting.” It’s a free event that offers open-source communities a place to meet, share ideas and collaborate.
CfP is open until December 1st!
Don’t forget to submit your sessions (submit here, don’t forget to select MySQL track) before December and see you soon in Brussels to discover amazing stuff related to MySQL and have some beers with …
[Read more]I’m pleased to announce: MySQL Connector/J 5.1.37 Maintenance Release is now available.
MySQL Connector/J can be downloaded from the official distribution channels MySQL Downloads and The Central repository. Commercial license version is available for download at My Oracle Support.
As always, we recommend that you check the “CHANGES” file in
the
download archive and/or the release notes to be aware of changes in
behavior that might affect your application.
MySQL Connector/J 5.1.37 includes several bug fixes and other improvements. I’d like to …
[Read more]GreenSQL Securing MySQL Database Application
After identifying the need for a more thorough and stringent database security solution, GreenSQL took as its mission the creation of the most comprehensive, holistic, and robust application for database security and protection. With its roots in the open-source community, GreenSQL developed the first MySQL Database application Database Firewall as open-source software. It took the vast knowledge that it gained from the open-source community and poured it into the capabilities of the GreenSQL.
The post GreenSQL Securing MySQL Database …
[Read more]Percona is glad to announce the release of Percona XtraBackup 2.3.2 GA on October 22nd, 2015. Downloads are available from our download site or Percona Software Repositories.
Percona XtraBackup enables MySQL backups without blocking user queries, making it ideal for companies with large data sets and mission-critical applications that cannot tolerate long periods of downtime. Offered free as an open source solution, Percona XtraBackup drives down backup costs while providing unique features for MySQL backups.
…
[Read more]Percona is glad to announce the release of Percona XtraBackup 2.2.13 on October 22nd, 2015. Downloads are available from our download site or Percona Software Repositories.
Percona XtraBackup enables MySQL backups without blocking user queries, making it ideal for companies with large data sets and mission-critical applications that cannot tolerate long periods of downtime. Offered free as an open source solution, Percona XtraBackup drives down backup costs while providing unique features for MySQL …
[Read more]Dear MySQL users,
MySQL Connector/Net 6.7.9, 6.8.7, and 6.9.8 are maintenance releases for the series of the .NET driver for MySQL. They can be used for production environments.
They are appropriate for use with MySQL server versions 5.5-5.7.
- The GB18030 Chinese character set is now supported, a character set that was added in MySQL 5.7.4.
- The JSON type is now supported, a type that was added in MySQL 5.7.8.
- Generated columns (GENERATION_EXPRESSION) are now supported, a feature added in MySQL 5.7.6.
An additional entry added for 6.8.7:
- A connection string that included Chinese characters for
a database or uid property would emit the following
exception;
“MySqlException: Unknown database ‘???'”. To solve this, the handshake process was hanged to use bytes instead of encoded strings.
The …
[Read more]
The MySQL developer tools team announces 6.3.5 as our GA
release for MySQL Workbench 6.3.
For the full list of changes in this revision, visit
http://dev.mysql.com/doc/relnotes/workbench/en/changes-6-3.html
For discussion, join the MySQL Workbench Forums:
http://forums.mysql.com/list.php?152
Download MySQL Workbench 6.3.5 GA now, for Windows, Mac OS X
10.7+,
Oracle Linux 6 and 7, Fedora 21 and Fedora 22, Ubuntu 14.04
and
Ubuntu 15.04 or sources, from:
http://dev.mysql.com/downloads/tools/workbench/
Enjoy!
Dear MySQL users,
The MySQL developer tools team announces 6.3.5 as our GA release
for
MySQL Workbench 6.3.
For the full list of changes in this revision, visit
http://dev.mysql.com/doc/relnotes/workbench/en/changes-6-3.html
For discussion, join the MySQL Workbench Forums:
http://forums.mysql.com/index.php?152
Download MySQL Workbench 6.3.5 GA now, for Windows, Mac OS X
10.7+,
Oracle Linux 6 and 7, Fedora 21 and Fedora 22, Ubuntu 14.04
and
Ubuntu 15.04 or sources, from:
On occasion, one will produce the script that will not work in
_ISE or on some particular version of Powershell. So, before
allowing script to run, I always do several checks depending on
the task at hand. Here's the code:
#region Check
if ($host.Name -ne 'ConsoleHost')
{
#Running in ISE
$host.UI.WriteErrorLine("`t Script can not be run in _ISE. Exiting.")
Exit 1
}
if (($PSVersionTable).PSVersion.Major -lt 3) {
$host.UI.WriteErrorLine("`t Script can not be run in PS 2. Exiting.")
Exit 2
}
$clrV =
((Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -recurse |
Get-ItemProperty -name Version,Release -EA 0 |
Where { $_.PSChildName -match '^(?!S)\p{L}'} |
Select Version | Sort Version -Desc | Select -First 1).Version).Split('.')[0]
if ( $clrV -lt 4) {
$host.UI.WriteErrorLine("`t Script can not be …[Read more]