https://bugs.mysql.com/bug.php?id=68775
Arquivo da tag: MySQL
Easy and scalable solution for mysql database backup to AWS S3 bucket
Mysql2::Error: Out of sort memory, consider increasing server sort buffer size using docker-compose.yml
[MY-013131] [Server] Out of sort memory, consider increasing server sort buffer size!
SET GLOBAL sort_buffer_size = 1024 * 1024 * 4;
CRUD API using GO, GIN, MySql
Create a CRUD REST API Using MySQL + Golang Part 1
How to reset root MySQL password on Ubuntu 18.04 Bionic Beaver Linux
How to connect to Amazon RDS using go-sql-driver
import (
"database/sql"
"fmt"
_ "github.com/go-sql-driver/mysql"
)
db, err := sql.Open("mysql", "<username>:<password>@tcp(<AWSConnectionEndpoint >:<port>)/<dbname>")
if err != nil {
fmt.Print(err.Error())
}
defer db.Close()