5 مستودعات
Mapping between application-level enumeration types and database-level enum types.
Distinct from Enum Definitions: Focuses on the mapping between code enums and database storage, not just internal enum definitions.
Explore 5 awesome GitHub repositories matching data & databases · Application-to-Database Enum Mapping. Refine with filters or upvote what's useful.
Doctrine ORM is a PHP object-relational mapper that connects application objects to relational database tables. It uses the data mapper and identity map patterns to decouple the in-memory object model from the database schema, allowing developers to manage data persistence without writing manual SQL. The project features a dedicated object-oriented query language and programmatic builder for retrieving data based on entities rather than tables. It implements a unit-of-work system to track object changes during a request and synchronize them via atomic transactions. The capability surface inc
Maps application-level enumeration types to their corresponding database-level enum representations.
Sea-ORM is an asynchronous SQL object-relational mapper and database toolkit for mapping relational tables to strongly typed objects. It provides a relational database mapper for performing CRUD operations across MySQL, PostgreSQL, and SQLite, and includes a programmatic dynamic query builder for constructing complex SQL statements. The project distinguishes itself by providing a GraphQL schema generator that transforms database entities into typed schemas with built-in pagination and filters. It also features a dedicated database migration tool for defining and applying versioned schema chan
Connects database-level enumeration types to application-level enums using native types or standard columns.
sqlboiler is a database-first ORM generator for Go that analyzes an existing database schema to produce strongly typed structures and query helpers. It functions as a schema-driven code generator, transforming database tables and relationships into executable Go source code. The project distinguishes itself through a type-safe query builder that uses chainable modifiers to construct SQL statements, eliminating the need for raw string concatenation. It utilizes customizable text templates to generate source code, allowing for the aliasing of schema entities and the creation of custom templates
Converts database enum types into language-specific constants to ensure type safety and eliminate raw strings.
Graphene-Django هو إطار عمل لتكامل GraphQL ومحول مخطط يُستخدم لبناء واجهات برمجة تطبيقات مكتوبة (typed) لتطبيقات Django. يعمل كطبقة API لقاعدة البيانات تحول حقول وعلاقات نموذج Django إلى مخطط رسومي، مما يسمح للعملاء بطلب بيانات محددة في استدعاء واحد. ينفذ المشروع مواصفات Relay، ويوفر أدوات لتحديد الكائنات العالمية والترقيم القائم على الاتصال الموحد لإدارة مجموعات البيانات الكبيرة. يتميز بربط نماذج قاعدة البيانات، والنماذج (forms)، والمُسلسلات (serializers) مباشرة بأنواع كائنات GraphQL والطفرات (mutations). يغطي إطار العمل مجموعة واسعة من الإمكانيات، بما في ذلك التحكم في الوصول على مستوى الحقل، واعتراض الطلبات القائم على البرمجيات الوسيطة، والتعامل مع العمليات في الوقت الفعلي عبر توجيه WebSocket. كما يتضمن أدوات لفحص أداء SQL وتغليف معاملات الطفرة لضمان سلامة البيانات أثناء التحديثات. يتم توفير عميل اختبار متخصص للتحقق من استجابات API وتنفيذ الاستعلامات مقابل نقطة النهاية.
Transforms database field options into typed GraphQL enums to ensure valid input selection.
Drift is a type-safe SQL persistence library and relational mapper that provides a structured way to map database tables to classes and execute SQL queries with build-time validation. It functions as a type-safe query builder and a wrapper for SQLite and PostgreSQL, eliminating manual result set parsing by binding query outputs to native objects. The project distinguishes itself through a build-time code generation system that produces type-safe APIs and validates raw SQL statements against database versions before execution. It features reactive query streaming, which transforms SQL queries
Maps application-level enumeration types to database storage without requiring custom converters.