2 مستودعات
Compiled low-level binaries used to execute database operations with high performance and strict type safety.
Distinct from Binary Database Compilers: None of the candidates cover the specific concept of a compiled query execution engine; they focus on compilers or reverse engineering.
Explore 2 awesome GitHub repositories matching data & databases · Query Engine Binaries. Refine with filters or upvote what's useful.
Prisma is a type-safe database object-relational mapper that uses a declarative schema to map data models to relational and document databases. It provides a unified toolkit for data access, combining a database driver with tools for schema management and record manipulation. The project features a multi-database driver that standardizes interactions across PostgreSQL, MySQL, and MongoDB. It includes a system for tracking and applying structural schema migrations across different environments and a graphical user interface for browsing and editing database records. The system ensures data in
Executes database operations using a compiled low-level binary to ensure high performance and strict type safety.
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
Executes database operations through a high-performance Rust-based binary sidecar that communicates via local sockets.