5.11.1 • Published 1 month ago

@tidbcloud/prisma-adapter v5.11.1

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
1 month ago

@tidbcloud/prisma-adapter

Prisma driver adapter for TiDB Cloud Serverless Driver. For more details, see TiDB Cloud Serverless Driver Prisma Tutorial .

Before you start

Before you start, make sure you have:

  • A TiDB Cloud account
  • Node >= 18
  • Prisma CLI installed

Install

You will need to install the @tidbcloud/prisma-adapter driver adapter and the @tidbcloud/serverless serverless driver.

npm install @tidbcloud/prisma-adapter @tidbcloud/serverless

DATABASE URL

Set the environment to your .env file in the local environment. You can get connection information on the TiDB Cloud console.

// .env
DATABASE_URL="mysql://username:password@host:4000/database?sslaccept=strict"

NOTE

The adapter only supports Prisma Client. Prisma migration and introspection still go through the traditional TCP way. If you only need Prisma Client, you can set the DATABASE_URL as the mysql://username:password@host/database format which port and ssl parameters are not needed).

Define Prisma schema

First, you need to create a Prisma schema file called schema.prisma and define the model. Here we use the user as an example.

// schema.prisma
generator client {
    provider        = "prisma-client-js"
    previewFeatures = ["driverAdapters"]
}

datasource db {
    provider     = "mysql"
    url          = env("DATABASE_URL")
}

// define model according to your database table
model user {
    id    Int     @id @default(autoincrement())
    email String? @unique(map: "uniq_email") @db.VarChar(255)
    name  String? @db.VarChar(255)
}

Query

Here is an example of query:

// query.js
import { connect } from '@tidbcloud/serverless';
import { PrismaTiDBCloud } from '@tidbcloud/prisma-adapter';
import { PrismaClient } from '@prisma/client';
import dotenv from 'dotenv';

// setup
dotenv.config();
const connectionString = `${process.env.DATABASE_URL}`;

// init prisma client
const connection = connect({ url: connectionString });
const adapter = new PrismaTiDBCloud(connection);
const prisma = new PrismaClient({ adapter });

// insert
const user = await prisma.user.create({
    data: {
        email: 'test@prisma.io',
        name: 'test',
    },
})
console.log(user)

// query after insert
console.log(await prisma.user.findMany())

Transaction

Here is an example of transaction:

// query.js
import { connect } from '@tidbcloud/serverless';
import { PrismaTiDBCloud } from '@tidbcloud/prisma-adapter';
import { PrismaClient } from '@prisma/client';
import dotenv from 'dotenv';

// setup
dotenv.config();
const connectionString = `${process.env.DATABASE_URL}`;

// init prisma client
const connection = connect({ url: connectionString });
const adapter = new PrismaTiDBCloud(connection);
const prisma = new PrismaClient({ adapter });

const createUser1 = prisma.user.create({
  data: {
    email: 'yuhang.shi@pingcap.com',
    name: 'Shi Yuhang',
  },
})

const createUser2 = prisma.user.create({
  data: {
    email: 'yuhang.shi@pingcap.com',
    name: 'Shi Yuhang2',
  },
})

const createUser3 = prisma.user.create({
  data: {
    email: 'yuhang2.shi@pingcap.com',
    name: 'Shi Yuhang2',
  },
})
try {
  await prisma.$transaction([createUser1, createUser2]) // Operations fail together
} catch (e) {
  console.log(e)
  await prisma.$transaction([createUser1, createUser3]) // Operations succeed together
}

Choose a version

AdapterPrisma/Prisma Clientserverless driver
v5.4.xv5.4.x[v0.0.6, v0.1.0)
v5.5.xv5.5.x[v0.0.7, v0.1.0)
v5.6.xv5.6.x[v0.0.7, v0.1.0)
v5.7.xv5.7.x[v0.0.7, v0.1.0)
v5.8.xv5.8.x[v0.0.9, v0.1.0)
v5.9.xv5.9.x[v0.0.9, v0.1.0)
v5.10.xv5.10.x>= v0.1.0
v5.11.xv5.11.x>= v0.1.0

Here is the step to step guide for how to choose the version: 1. Choose the Prisma version: Choose the one as you need. 2. Choose the adapter version: If you are using Prisma vx.y.z, you can choose the latest adapter version in vx.y. Open an issue once you find the adapter version is not compatible with Prisma version. 3. Choose the serverless driver version: You can always use the latest version according to the table above.

Limitations

5.11.1

1 month ago

5.11.0

2 months ago

5.10.2

2 months ago

5.9.1

3 months ago

5.8.1

3 months ago

5.8.0-dev.15

5 months ago

5.6.0

5 months ago

5.7.0

5 months ago

5.5.2

6 months ago

5.5.0

7 months ago

5.4.3

7 months ago

5.4.2

7 months ago