Setup for Connector/R2DBC Examples (Native API)
Overview
Create the Schema
CREATE DATABASE IF NOT EXISTS test;CREATE TABLE IF NOT EXISTS test.contact(
id INT PRIMARY KEY AUTO_INCREMENT,
first_name VARCHAR(25),
last_name VARCHAR(25),
email VARCHAR(25)) ENGINE=InnoDB;Create the User
CREATE USER 'connr2dbc_test'@'192.0.2.50'
IDENTIFIED BY 'db_user_password';Last updated
Was this helpful?

