awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
pardom avatar

pardom/ActiveAndroid

0
View on GitHub↗
4,656 stars·1,027 forks·Java·4 vueswww.activeandroid.com↗

ActiveAndroid

ActiveAndroid est un framework de persistance pour gérer les bases de données SQLite locales sur Android. Il fournit un système d'ORM (Object-Relational Mapping) de type active record qui lie les tables de base de données aux classes, permettant la persistance et la récupération de données sans écrire de SQL manuel.

Le projet se distingue par un outil dédié à la migration de schéma qui met à jour les structures de base de données à l'aide de scripts versionnés chargés depuis les assets de l'application. Il inclut également un framework pour partager le contenu de la base de données entre différentes applications Android via une interface standard de content provider basée sur des URI.

La bibliothèque couvre de larges domaines de capacités, notamment l'ORM pour gérer les relations entre tables et les types de données personnalisés, le traitement de transactions en masse pour l'ingestion de données, et l'initialisation automatisée de la base de données à partir de fichiers pré-remplis. Elle fournit en outre des utilitaires pour les requêtes programmatiques et l'indexation de colonnes afin de gérer la recherche et la récupération de données.

Features

  • Active-Record ORMs - Provides an Active Record ORM that binds data access logic directly to model objects.
  • Android SQLite Management - Provides a comprehensive persistence framework for managing SQLite databases within the Android ecosystem.
  • Schema Migration Scripts - Uses ordered SQL scripts from assets to incrementally update database structures across application versions.
  • Database Schema Migrations - Automates the application of versioned updates to database schemas to maintain structural compatibility.
  • Object-Relational Mapping Associations - Manages relationships and foreign key associations between database entities at the ORM level.
  • Programmatic Query APIs - Retrieves objects from the database using a programmatic API to filter and fetch records.
  • Schema Migration Tools - Ships a management tool for updating database structures using versioned scripts loaded from assets.
  • Class-to-Table Mappings - Maps classes to tables using annotations to manage primitive data types and primary keys.
  • Object Relational Mappings - Provides an object-relational mapping system to bind Android classes to SQLite tables using annotations.
  • Content Providers - Implements standardized Android Content Providers to share database content with other applications.
  • Inter-App Data Sharing - Exports database records to other Android applications via system-standard content providers.
  • URI-Based Content Provisioning - Exposes database records to external applications using a standard provider interface and URI-based access patterns.
  • Schema Mappings - Maps application objects to database table columns using metadata annotations.
  • Database Schema Migrations - Implements a dedicated tool for updating database schemas through sequential, versioned SQL scripts.
  • Custom Type Serializers - Implements serialization and deserialization logic to map complex Java objects to primitive database types.
  • Data Type Mappings - Translates application-level complex data types into native database column formats.
  • Database Connection Management - Manages the lifecycle and configuration of connections to SQLite database files.
  • Database Initializations - Provides mechanisms for initializing the database using pre-populated files from application assets.
  • Database Schema Initializations - Provides a mechanism to initialize the database structure and seed it with data from application assets.
  • Database Setup - Automates the configuration and initialization of the database layer during application startup.
  • Bulk ORM Operations - Provides high-speed bulk insert and update operations for records using batch processing.
  • Record Deletion - Provides methods for removing specific database records based on object instances or query criteria.
  • Bulk Record Insertions - Supports bulk record insertion by wrapping multiple save operations in a single atomic transaction.
  • Column Indexing - Allows marking specific columns as indexed within model definitions to accelerate search and filtering.
  • Database ORM - Implements active record style persistence for SQLite databases.
  • Persistence - Active record style SQLite persistence.

Historique des stars

Graphique de l'historique des stars pour pardom/activeandroidGraphique de l'historique des stars pour pardom/activeandroid

Recherche par IA

Explorez plus de dépôts awesome

Décrivez vos besoins en langage naturel — l'IA classe des milliers de projets open source sélectionnés par pertinence.

Start searching with AI

Questions fréquentes

Que fait pardom/activeandroid ?

ActiveAndroid est un framework de persistance pour gérer les bases de données SQLite locales sur Android. Il fournit un système d'ORM (Object-Relational Mapping) de type active record qui lie les tables de base de données aux classes, permettant la persistance et la récupération de données sans écrire de SQL manuel.

Quelles sont les fonctionnalités principales de pardom/activeandroid ?

Les fonctionnalités principales de pardom/activeandroid sont : Active-Record ORMs, Android SQLite Management, Schema Migration Scripts, Database Schema Migrations, Object-Relational Mapping Associations, Programmatic Query APIs, Schema Migration Tools, Class-to-Table Mappings.

Quelles sont les alternatives open-source à pardom/activeandroid ?

Les alternatives open-source à pardom/activeandroid incluent : dotnetcore/freesql — FreeSql is a .NET object-relational mapper and data access layer that translates object-oriented code into SQL for… simolus3/drift — Drift is a type-safe SQL persistence library and relational mapper that provides a structured way to map database… guolindev/litepal — LitePal is an object-relational mapping library and SQLite database wrapper for Android applications. It replaces raw… yiisoft/yii — Yii is a full-stack PHP web framework and component-based system designed for building dynamic websites and RESTful… thuss/standalone-migrations — Standalone Migrations is a Ruby-based utility that provides database schema management and migration capabilities… seaql/sea-orm — Sea-ORM is an asynchronous SQL object-relational mapper and database toolkit for mapping relational tables to strongly…

Alternatives open source à ActiveAndroid

Projets open source similaires, classés selon le nombre de fonctionnalités partagées avec ActiveAndroid.
  • dotnetcore/freesqlAvatar de dotnetcore

    dotnetcore/FreeSql

    4,388Voir sur GitHub↗

    FreeSql is a .NET object-relational mapper and data access layer that translates object-oriented code into SQL for multiple relational database providers. It functions as a fluent SQL query builder and database schema synchronizer, allowing developers to align database table and index structures with entity class definitions. The framework is specifically optimized for .NET Native AOT to ensure reduced memory footprints and faster startup times. It includes a database traffic manager to distribute load through read-write splitting, dynamic table sharding, and tenant-based data isolation. Bro

    C#accessclickhousecodefirst
    Voir sur GitHub↗4,388
  • simolus3/driftAvatar de simolus3

    simolus3/drift

    3,231Voir sur GitHub↗

    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

    Dartdartdart-build-systemflutter
    Voir sur GitHub↗3,231
  • guolindev/litepalAvatar de guolindev

    guolindev/LitePal

    8,068Voir sur GitHub↗

    LitePal is an object-relational mapping library and SQLite database wrapper for Android applications. It replaces raw SQL queries with a fluent interface and object mapping to simplify local data persistence and database management. The project provides a specialized system for automatically synchronizing database schemas based on model definitions to handle version updates. It also includes a storage solution for securing sensitive data through configurable field-level encryption. The library covers broad data storage and synchronization capabilities, including atomic transaction support, m

    Javaandroidlitepalsqlite3
    Voir sur GitHub↗8,068
  • yiisoft/yiiAvatar de yiisoft

    yiisoft/yii

    4,825Voir sur GitHub↗

    Yii is a full-stack PHP web framework and component-based system designed for building dynamic websites and RESTful services. It operates as an MVC application framework that separates business logic from the user interface and includes a built-in object-relational mapper for interacting with databases. The project provides a comprehensive command line toolset for project bootstrapping, automated code generation, and the execution of background tasks. It utilizes a component-based architecture and a service locator to manage dependency injection and object lifecycles. The framework covers a

    PHPhacktoberfestphpphp-framework
    Voir sur GitHub↗4,825
  • Voir les 30 alternatives à ActiveAndroid→