hi019 / prisma-client-go

Prisma Client Go is an auto-generated and fully type-safe database client

Home Page:https://www.prisma.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Prisma Client Go

Typesafe database access for Go

Quickstart   •   Website   •   Docs   •   API reference   •   Blog   •   Slack   •   Twitter

Prisma Client Go is an auto-generated query builder that enables type-safe database access and reduces boilerplate. You can use it as an alternative to traditional ORMs such as gorm, xorm, sqlboiler and most database-specific tools.

It is part of the Prisma ecosystem. Prisma provides database tools for data access, declarative data modeling, schema migrations and visual data management.

NOTE: Prisma Client Go is currently offered under our early access program. There will be documented breaking changes with new releases.

Getting started

To get started, read our quickstart tutorial to add Prisma to your project in just a few minutes.

You also might want to read deployment tips and the full API reference.

Notes

The go client works slightly different than the normal Prisma tooling. When you're using the go client, whenever you see Prisma CLI commands such as prisma ..., you should always write go run github.com/prisma/prisma-client-go ... instead.

Contributing

Running Tests

# requires docker to be installed
go run ./test/setup/init setup # sets up docker containers for integration testing
go generate ./...
go test ./... -v

# to teardown docker containers:
go run ./test/setup/init teardown

Writing Commit Messages

We use conventional commits (also known as semantic commits) to ensure consistent and descriptive commit messages.

Security

If you have a security issue to report, please contact us at security@prisma.io

About

Prisma Client Go is an auto-generated and fully type-safe database client

https://www.prisma.io

License:Apache License 2.0


Languages

Language:Go 99.2%Language:Shell 0.4%Language:Dockerfile 0.4%