16

command module
v0.0.0-...-a32095e Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 4, 2024 License: MIT Imports: 10 Imported by: 0

README

Relational Databases - Bulk Insertions in MySQL

Video

Using the third party package go-sql-driver/mysql/.

Database Schema used:

CREATE TABLE users(
  first_name VARCHAR(10) NOT NULL,
  last_name  VARCHAR(10) NOT NULL
);

Using docker for running MySQL

docker run \
  --rm \
  -d \
  -e MYSQL_ROOT_PASSWORD=password \
  -e MYSQL_DATABASE=dbname \
  -p 3306:3306 \
  mysql:8.0.27

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL