# Prisma Studio (/docs/studio)

Location: Prisma Studio

[Prisma Studio](https://www.prisma.io/studio) works with or without Prisma ORM and supports the following workflows:

* Viewing and editing data in a spreadsheet-like interface
* Real-time schema introspection
* Embedding directly into your Next.js applications
* VS Code integration for in-editor database management

Supported databases [#supported-databases]

* PostgreSQL
* MySQL
* SQLite

Quick start [#quick-start]

  

#### npm

```bash
# With Prisma project
npx prisma studio

# With direct database connection
npx prisma studio --url="postgresql://user:password@localhost:5432/dbname"
```

#### pnpm

```bash
# With Prisma project
pnpm dlx prisma studio

# With direct database connection
pnpm dlx prisma studio --url="postgresql://user:password@localhost:5432/dbname"
```

#### yarn

```bash
# With Prisma project
yarn dlx prisma studio

# With direct database connection
yarn dlx prisma studio --url="postgresql://user:password@localhost:5432/dbname"
```

#### bun

```bash
# With Prisma project
bun x prisma studio

# With direct database connection
bun x prisma studio --url="postgresql://user:password@localhost:5432/dbname"
```

Getting started [#getting-started]

* [Getting Started](/studio/getting-started) - Learn how to set up and use Prisma Studio to manage your database
* [Embed Studio](/studio/integrations/embedding) - Learn how to embed Prisma Studio in your own applications
* [Studio in VS Code](/studio/integrations/vscode-integration) - Learn how to use Prisma Studio directly in VS Code

## Related pages

- [`Build faster with Prisma + AI`](https://www.prisma.io/docs/ai): Build faster with Prisma and AI coding tools like Cursor and ChatGPT
- [`Choose a setup path`](https://www.prisma.io/docs/getting-started): Choose the fastest path to start using Prisma ORM or Prisma Postgres in a new or existing project.
- [`CLI Overview`](https://www.prisma.io/docs/cli): The Prisma CLI is the command-line interface for Prisma ORM. Use it to initialize projects, generate Prisma Client, manage databases, run migrations, and more
- [`Console`](https://www.prisma.io/docs/console): Learn how to use the Console to manage and integrate Prisma products into your application.
- [`Guides`](https://www.prisma.io/docs/guides): A collection of guides for various tasks and workflows