awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
pardom avatar

pardom/ActiveAndroid

0
View on GitHub↗
4,656 نجوم·1,027 تفرعات·Java·2 مشاهداتwww.activeandroid.com↗

ActiveAndroid

ActiveAndroid is a persistence framework for managing local SQLite databases on Android. It provides an active record object-relational mapping system that binds database tables to classes, allowing for data persistence and retrieval without writing manual SQL.

The project distinguishes itself through a dedicated schema migration tool that updates database structures using versioned scripts loaded from application assets. It also includes a framework for sharing database content between different Android applications via a standard URI-based content provider interface.

The library covers broad capability areas including object-relational mapping for managing table relationships and custom data types, bulk transaction processing for data ingestion, and automated database initialization from pre-populated asset files. It further provides utilities for programmatic querying and column indexing to manage data lookup and retrieval.

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.

سجل النجوم

مخطط تاريخ النجوم لـ pardom/activeandroidمخطط تاريخ النجوم لـ pardom/activeandroid

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Start searching with AI

الأسئلة الشائعة

ما هي وظيفة pardom/activeandroid؟

ActiveAndroid is a persistence framework for managing local SQLite databases on Android. It provides an active record object-relational mapping system that binds database tables to classes, allowing for data persistence and retrieval without writing manual SQL.

ما هي الميزات الرئيسية لـ pardom/activeandroid؟

الميزات الرئيسية لـ pardom/activeandroid هي: 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.

ما هي البدائل مفتوحة المصدر لـ pardom/activeandroid؟

تشمل البدائل مفتوحة المصدر لـ pardom/activeandroid: 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…

بدائل مفتوحة المصدر لـ ActiveAndroid

مشاريع مفتوحة المصدر مشابهة، مرتبة حسب عدد الميزات المشتركة مع ActiveAndroid.
  • dotnetcore/freesqlالصورة الرمزية لـ dotnetcore

    dotnetcore/FreeSql

    4,388عرض على 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
    عرض على GitHub↗4,388
  • simolus3/driftالصورة الرمزية لـ simolus3

    simolus3/drift

    3,231عرض على 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
    عرض على GitHub↗3,231
  • guolindev/litepalالصورة الرمزية لـ guolindev

    guolindev/LitePal

    8,068عرض على 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
    عرض على GitHub↗8,068
  • yiisoft/yiiالصورة الرمزية لـ yiisoft

    yiisoft/yii

    4,825عرض على 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
    عرض على GitHub↗4,825
عرض جميع البدائل الـ 30 لـ ActiveAndroid→