We'll configure your environment, perform migrations for each database, and interact with them using Prisma's powerful query engine by creating separate Prisma services
This is a tutorial that provides an overview of using the tool. There are many ways to code the logic and organize your code. It's up to you to design your API according to your specific needs. My role is to guide you and offer a solid foundation.
Introduction to Prisma
Prisma is an open-source database toolkit that simplifies database interactions by providing:
Type-safe database queries
Easy-to-use migrations
Auto-generated database schemas and models
Excellent support for relational databases like MySQL, PostgreSQL, SQLite, and more.
Prisma integrates seamlessly with NestJS applications, enhancing database access safety and efficiency. This guide extends the integration to handle multiple MySQL databases within a single NestJS project.
Setting Up Prisma with NestJS
Step 1: Install Prisma CLI and Prisma Client
First, install Prisma and its necessary dependencies. Run the following commands in your project directory:
Since you're working with multiple databases, it's recommended to create separate Prisma schemas for each database. This approach ensures clear separation and easier management.
Create Separate Schema Files
Create two schema files: schema_db1.prisma and schema_db2.prisma inside a new prisma directory.
For each schema, specify the datasource and generator.
Step 3: Configure Database Connections
Your .env file is already set up to handle multiple databases. Here's how it looks:
# CORE API ---------------------------------------------------------------------------------------------------
# The environment the application is running in
# Options: development, production, test
NODE_ENV=development
# The port number the application will listen on
PORT=3000
# CAPTCHA ---------------------------------------------------------------------------------------------------
# The secret key for Google reCAPTCHA verification https://www.google.com/recaptcha/about/
RECAPTCHA_SECRET_KEY=your-google-recaptcha-secret-key
# CONNECT PRISMA DATABASE -----------------------------------------------------------------------------------
# npm run prisma:migrate:db1
# npm run prisma:generate:db1
# Database connection settings
DB_HOST=localhost # The hostname or IP address of the database server
DB_USER=user # The username for connecting to the database
DB_PASS=pwd # The password for the database user
DB_PORT=3306 # The port number the database server is listening on
DB_NAME_DB1=mydatabase_test
DB_NAME_DB2=database2
# URLs
DATABASE_URL_DB1="mysql://${DB_USER}:${DB_PASS}@${DB_HOST}:${DB_PORT}/${DB_NAME_DB1}"
DATABASE_URL_DB2="mysql://${DB_USER}:${DB_PASS}@${DB_HOST}:${DB_PORT}/${DB_NAME_DB2}"
Generating Prisma Clients
Step 1: Define Your Data Models
Define the data models for each database in their respective schema files.
prisma/schema_db1.prisma
datasource db1 {
provider = "mysql"
url = env("DATABASE_URL_DB1")
}
generator client_db1 {
provider = "prisma-client-js"
output = "../node_modules/@prisma/client_db1"
}
model User {
id Int @id @default(autoincrement())
name String
email String @unique
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
prisma/schema_db2.prisma
datasource db2 {
provider = "mysql"
url = env("DATABASE_URL_DB2")
}
generator client_db2 {
provider = "prisma-client-js"
output = "../node_modules/@prisma/client_db2"
}
model Product {
id Int @id @default(autoincrement())
name String
price Float
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
In these schema files:
Datasources: Define the connection to each MySQL database using environment variables.
Generators: Generate separate Prisma clients for each database, outputting them to different directories.
Models: Define the User model for db1 and the Product model for db2.
Step 2: Generate Prisma Clients
Add the following scripts to your package.json to handle migrations and client generation for each database: