LogoClawIndex
CasesSkillsAbout
LogoClawIndex

ClawIndex

OpenClaw Skills & Use Case Index

ClawIndex is an ecosystem-driven index of OpenClaw skills and real-world use cases.

Index

Skills·
Cases

Meta

About·
Disclaimer·
Email·
GitHub
© 2026 ClawIndex All Rights Reserved.

prisma-driver-adapter-implementation - Prisma SQL Driver Adapter Implementation Guide

Provides guidelines and protocol contracts for implementing, modifying, and verifying Prisma ORM SQL driver adapters and transaction lifecycles.

Tags

Updated: 2026-09-24

Capabilities

Typical Inputs

Typical Outputs

What this skill does

  • Implement SqlDriverAdapter interfaces
  • Support nested transactions and savepoints
  • Map arguments metadata and errors
  • Debug adapter queries and transactions
  • Execute multi statement migration scripts
  • Manage shadow database connection lifecycle

Inputs

  • SqlQuery with args and types
  • Driver database connection
  • Isolation level specifications
  • Savepoint identifiers
  • Migration scripts

Outputs

  • SqlResultSet with mapped data
  • Bound Transaction instance
  • Wrapped DriverAdapterError
  • Affected rows count

Requirements

  • Prisma ORM release
  • @prisma/driver-adapter-utils package
  • Database driver with array row mode

Source

  • Spec: SKILL.md
prisma
driver-adapter
sql
transaction
orm
database
Implement SqlDriverAdapter interfaces
Support nested transactions and savepoints
Map arguments metadata and errors
Debug adapter queries and transactions
SqlQuery with args and types
Driver database connection
Isolation level specifications
SqlResultSet with mapped data
Bound Transaction instance
Wrapped DriverAdapterError