2 रिपॉजिटरी
Object-relational mappers specifically designed for the SQLite database engine.
Distinct from SQLite Database Management: Distinguished from general ORMs by its specific targeting of SQLite's lightweight, file-based architecture.
Explore 2 awesome GitHub repositories matching data & databases · SQLite ORMs. Refine with filters or upvote what's useful.
sqlite-net is a lightweight object-relational mapper and data access layer for SQLite. It provides tools for translating application classes into database tables, managing records through an entity mapper, and implementing local data persistence. The library includes an encrypted wrapper that secures database files using connection keys and native encryption configurations. It also features a data access layer that supports both synchronous and asynchronous operations to maintain application responsiveness during disk access. The project covers a range of database management capabilities, in
Functions as a lightweight object-relational mapper for translating application classes into SQLite tables.
This project is a header-only C++ library that provides an object-relational mapping layer for SQLite databases. It enables developers to map native class structures directly to database tables, facilitating type-safe data persistence and retrieval without the need for raw query strings. The library distinguishes itself through the use of template-based metaprogramming, which allows for compile-time schema mapping and query construction. By utilizing a fluent interface, it translates method calls into optimized database statements, while its support for prepared statement caching minimizes pa
Provides a header-only C++ object-relational mapping library specifically optimized for SQLite database persistence.