awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 个仓库

Awesome GitHub RepositoriesDatabase-Specific Type Mappings

Mapping of a specific database's native types into a standardized format.

Distinct from Data Type Mappings: Distinct from Data Type Mappings: specializes the mapping for Oracle's native data types specifically.

Explore 5 awesome GitHub repositories matching data & databases · Database-Specific Type Mappings. Refine with filters or upvote what's useful.

Awesome Database-Specific Type Mappings GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • alibaba/dataxalibaba 的头像

    alibaba/DataX

    17,241在 GitHub 上查看↗

    DataX is a distributed data integration framework and plugin-based ETL tool designed for synchronizing large datasets between heterogeneous sources and destinations. It functions as a JDBC data migration engine and offline synchronization tool, enabling the movement of data between relational databases, NoSQL stores, and object storage. The system utilizes a plugin-based connector architecture that decouples reader and writer logic, allowing it to map and transform data types across different storage engines using a standardized internal representation. This design supports heterogeneous data

    Maps native Oracle data types into a standardized internal format for downstream processing.

    Java
    在 GitHub 上查看↗17,241
  • dotnetcore/freesqldotnetcore 的头像

    dotnetcore/FreeSql

    4,388在 GitHub 上查看↗

    FreeSql 是一个 .NET 对象关系映射器(ORM)和数据访问层,可将面向对象的代码转换为适用于多种关系型数据库提供程序的 SQL。它作为一个流畅的 SQL 查询构建器和数据库架构同步器,允许开发者将数据库表和索引结构与实体类定义保持一致。 该框架专门针对 .NET Native AOT 进行了优化,以确保更小的内存占用和更快的启动时间。它包含一个数据库流量管理器,通过读写分离、动态分表和基于租户的数据隔离来分配负载。 其广泛的功能包括使用特定于提供程序的批量复制机制实现高性能数据摄入,利用窗口函数和递归 CTE 进行高级查询,以及基于 AOP 的数据变更审计监控。该系统还提供用于自动迁移的架构管理工具,以及用于从数据库元数据生成实体类的开发实用程序。

    Translates high-level .NET structures, such as arrays and JSON objects, into database-specific formats.

    C#accessclickhousecodefirst
    在 GitHub 上查看↗4,388
  • go-gorp/gorpgo-gorp 的头像

    go-gorp/gorp

    3,751在 GitHub 上查看↗

    Gorp is a lightweight object-relational mapper for Go that binds structs to relational database tables. It functions as a relational data mapper and SQL dialect abstraction layer, automating the translation between application data and relational rows. The project provides a translation layer that generates vendor-specific SQL for PostgreSQL, MySQL, SQLite, Oracle, and SQL Server. It distinguishes itself by implementing optimistic locking via version columns to prevent concurrent update conflicts and providing a database schema generator to create tables and indexes from object definitions.

    Translates complex language structures like slices or custom types into database-compatible formats during persistence.

    Go
    在 GitHub 上查看↗3,751
  • npgsql/npgsqlnpgsql 的头像

    npgsql/npgsql

    3,702在 GitHub 上查看↗

    Npgsql is a .NET data provider and client library that enables applications to connect, execute queries, and manage data within PostgreSQL databases. It functions as a connection manager and translation layer between the application and the database server. The project features a connection manager capable of multi-host connectivity, providing load balancing and automatic failover across multiple servers. It includes specialized support for high-volume data import and export through bulk data operations and a mapping system that translates complex database types, such as arrays and JSON, into

    Translates complex PostgreSQL types like arrays and JSON into native .NET objects and vice versa.

    C#c-sharpdatabasedotnet
    在 GitHub 上查看↗3,702
  • gaarason/database-allgaarason 的头像

    gaarason/database-all

    1,033在 GitHub 上查看↗

    This project is a Java-based object-relational mapping framework that utilizes the active record pattern to simplify database interactions. It provides a comprehensive data access layer that binds database tables directly to application objects, enabling developers to perform CRUD operations, manage complex entity relationships, and execute queries through a fluent, type-safe interface. Designed for integration with Spring Boot, the framework abstracts database complexities while maintaining support for native compilation and asynchronous execution. The framework distinguishes itself through

    Converts complex types to database-compatible formats during serialization, supporting custom logic and bitwise operations.

    Javadatabaseeloquenteloquent-orm
    在 GitHub 上查看↗1,033
  1. Home
  2. Data & Databases
  3. Data Type Mappings
  4. Database-Specific Type Mappings

探索子标签

  • Complex Data Type MappingsTranslation of high-level structures like arrays and JSON objects into database-specific formats with operator support. **Distinct from Database-Specific Type Mappings:** Extends general database-specific type mappings to include queryable complex structures like arrays and JSON.
  • DuckDB Type MappingsSpecific mappings of DuckDB native types into application-level data structures. **Distinct from Database-Specific Type Mappings:** Specializes generic database-specific mappings specifically for DuckDB's relational types like arrays and maps.