This presentation is a summary of the MySQL 8.0.17 new features.
The post MySQL 8.0.17 - New Features Summary first appeared on dasini.net - Diary of a MySQL expert.
This presentation is a summary of the MySQL 8.0.17 new features.
The post MySQL 8.0.17 - New Features Summary first appeared on dasini.net - Diary of a MySQL expert.
Author: Robert Agar
A constant in the computing world is that it is always evolving and offering new challenges and opportunities. Software solutions come and go with some becoming staples in the business community while others barely cause a ripple as they disappear into the ether. Take MySQL as an example. From its humble beginnings in 1994, the platform has grown to become the most popular SQL database in 2019. If you are a database professional, chances are very good that you work with MySQL regularly.
The popularity of the database platform has not gone unnoticed by the unscrupulous entities that engage in cybersecurity attacks with nefarious intentions. Whether acting …
[Read more]Percona is happy to announce the release of Percona XtraDB Cluster 5.7.27-31.39 on September 18, 2019. Binaries are available from the downloads section or from our software repositories.
Percona XtraDB Cluster 5.7.27-31.39 is now the current release, based on the following:
All Percona software is open-source and free.
Bugs Fixed
Percona is glad to announce the release of Percona XtraDB Cluster 5.6.45-28.36 on September 17, 2019. Binaries are available from the downloads section or from our software repositories.
Percona XtraDB Cluster 5.6.45-28.36 is now the current release, based on the following:
All Percona software is open-source and free.
Bugs Fixed
Is “that” time of the year … when autumn is just around the
corner and temperature start to drop.
But is also the time for many exciting conferences in the MySQL
world.
We have the Oracle Open world this week, and many interesting
talks around MySQL 8.
Then in 2 weeks we will be at the Percona live Europe in
Amsterdam, which is not a MySQL (only) conference anymore
(https://www.cvent.com/events/percona-live-open-source-database-conference-europe-2019/agenda-6321c2468b1b43328f97212f3e53f4de.aspx).
Percona had move to a more “polyglot” approach not only in its
services but also during the events.
This is obviously an interesting experiment, that allow people
from different technologies to meet and discuss. At the end of
the day it is a quite unique …
Please find below the conferences & shows where you can find MySQL Community team and/or MySQL experts during this week:
Oracle Open World / MySQL Reception, San Francisco, US, September 16-19, 2019
Six years ago I wrote a common lookup post to illustrate the effectiveness of things used throughout your applications. Now, I’m updating my student image with a more complete solution to show how to avoid update anomalies.
In the prior post, I used a while
loop in PHP, like
the following:
do { ... } while($stmt->next_result());
Using PHP Version 7.3.8 and MySQL 8.0.16, that now raises the following error message:
Strict Standards: mysqli_stmt::next_result(): There is no next result set. Please, call mysqli_stmt_more_results()/mysqli_stmt::more_results() to check whether to call this function/method in /var/www/html/app/library.inc on line 81
You can see this type of error when you set the following parameters in your file during testing:
ini_set('display_errors',1); …[Read more]
Somebody didn’t like the MySQLi Update Query example on the tutorialspoint.com website because it use the
procedure mysqli_query
style. Here’s a simple
example of using the object-oriented method version. More or
less, instead of query it uses the more intuitive
execute()
method.
The update_member
function contains the logic and
below it is a call to the test the function. It relies on a
MySQLCredentials.inc
file that contains the
hostname, user name, password, and database name. You can create
create member
table, like my example in MySQL 8, or
any other table in your MySQL database.
<?php /* || Function Name: update_member */ function update_member($account_number, $member_type, …[Read more]
Percona announces the release of Percona Toolkit 3.1.0 on September 13, 2019.
Percona Toolkit is a collection of advanced open-source command-line tools, developed and used by the Percona technical staff, that are engineered to perform a variety of MySQL®, MongoDB®, PostgreSQL® and system tasks that are too difficult or complex to perform manually. With over 1,000,000 downloads, Percona Toolkit supports Percona Server for MySQL, MySQL, MariaDB, PostgreSQL, Percona Server for MongoDB, and MongoDB.
Percona Toolkit, like all Percona software, is free and open source. You can download packages …
[Read more].NET Core 3 .NET Core was presented by Microsoft in 2016, but its 1.x versions had limited set of features comparing to Full .NET Framework. Since then .NET Core has been drastically improved. .NET Core 2.0 has a significant part of Full .NET Framework features and includes new functionality and significant performance optimizations. This year, […]