The Stroz

MySQL Shell Table Export Utility
MySQL Shell Table Export Utility

We already discussed how we can use MySQL Shell to dump and load data using a multithreaded process. In this post, we will discuss ways we can export data from a table into different formats.

Jul 25, 2024
5 minutes
RegEx Backreferences in MySQL
RegEx Backreferences in MySQL

In my last regular expressions post, we discussed subexpressions and how to isolate specific parts of our pattern match. We can then use those subexpressions to replace parts of our pattern with other text. This post will discuss backreferences and how we can use them as part of our pattern match.

Jul 23, 2024
3 minutes
Using RegEx Subexpressions in MySQL
Using RegEx Subexpressions in MySQL

As I have discussed, regular expressions can be a powerful tool for developers. When we use regular expressions to match a pattern and need to replace part of that pattern, subexpressions make it much easier. Subexpressions are specific parts of a pattern that we can reference elsewhere in the process.

Jul 18, 2024
5 minutes
A Different RegEx Solution
A Different RegEx Solution

In my last post about regular expressions (regex), I offered up a solution to requirements to extract text a substring from a larger blob of text. Over the weekend, I was thinking about this solution and wanted to know if it was possible to meet the requirements using a solution based solely on a regular expression. It turns out it is.

Jul 16, 2024
3 minutes
Database Seeders Using Lucid ORM
Database Seeders Using Lucid ORM

In my last post, I demonstrated how we can use LucidORM to track and manage database changes. Today, I will discuss using seeders to populate our database.

Jul 15, 2024
7 minutes
Database Migrations with Lucid ORM
Database Migrations with Lucid ORM

I am rewriting an old web application to use AdonisJS. In my last post, I discussed some features of AdonisJS and initialized a new application. In today’s post, I will discuss my first foray into using database migrations with Lucid ORM.

Jul 12, 2024
7 minutes
More Regular Expressions in MySQL
More Regular Expressions in MySQL

Regular expressions are used to match patterns in a given block of text. In a previous post, I discussed some regular expression features of MySQL. The examples I provided allowed us to return rows based on a pattern match and replace instances of our pattern with another substring. In this post, I will discuss some other regular expression functions.

Jul 11, 2024
7 minutes
Hello, Adonis!
Hello, Adonis!

For those who do not know me very well, I am an avid golfer. I have managed a local golf league for the last 15 years. During that time, the league has become so popular that we had to split the league in two and have half of the golfers play on Tuesday night and the other half on Thursday. Quite a few years ago, I wrote a web application to help me manage the league. The web app started showing its age, and I decided it was time to rewrite it from scratch. I also decided to bring you all along for the ride.

Jul 10, 2024
5 minutes
MySQL Shell CLI Integration
MySQL Shell CLI Integration

Over the last few years, I have become quite smitten with MySQL Shell. For those who may not be familiar with MySQL Shell, it is a new(ish) command line interface (CLI) for connecting to and managing MySQL instances. During a recent episode of Inside MySQL: Sakila Speaks, Fred and I talked to Miguel Araujo about many of the helpful (and lesser known) features of MySQL Shell. This post is the tenth in a series about these “hidden gem” features.

Jul 09, 2024
16 minutes
Advanced Data Load with MySQL Shell
Advanced Data Load with MySQL Shell

Over the last few years, I have become quite smitten with MySQL Shell. For those who may not be familiar with MySQL Shell, it is a new(ish) command line interface (CLI) for connecting to and managing MySQL instances. During a recent episode of Inside MySQL: Sakila Speaks, Fred and I talked to Miguel Araujo about many of the helpful (and lesser known) features of MySQL Shell. This post is the ninth in a series about these “hidden gem” features.

Jul 04, 2024
16 minutes