2 个仓库
High-level languages used to define database structures and relationships declaratively.
Distinct from TypeScript Database Modeling: Focuses on the declarative language/file used for modeling rather than just the TypeScript implementation
Explore 2 awesome GitHub repositories matching data & databases · Declarative Schema Languages. Refine with filters or upvote what's useful.
Prisma1 is a TypeScript object-relational mapper and type-safe database client designed for interacting with relational databases. It functions as a system for declarative schema modeling, where database structures are defined in a single schema file that automatically synchronizes with the underlying database. The project provides a type-safe query builder that generates a custom client to ensure database queries match defined schema types at compile time. It also includes a database GUI administrator, providing a visual web interface for browsing, editing, and managing relational database r
Uses a high-level declarative language to design database structures and relationships.
Prisma Client is a database client for Node.js and TypeScript applications that provides a type-safe interface for interacting with relational databases. It functions as an object-relational mapper that translates declarative schema definitions into strongly typed query interfaces, ensuring that database operations align with the underlying data structure. The library distinguishes itself by generating type definitions directly from a schema model, which enables static analysis and IDE autocompletion during development. By abstracting database interactions into a unified query language, it st
Uses a declarative schema language to define database structures and automatically generate application interfaces.