9 dépôts
Tools for managing schemas, queries, and result parsing specifically within the Android ecosystem.
Distinct from SQLite Databases: The candidates focus on general SQLite engines or unrelated Android dependency management; this is the domain of Android-specific DB orchestration.
Explore 9 awesome GitHub repositories matching mobile development · Android SQLite Management. Refine with filters or upvote what's useful.
Anko is an Android Kotlin library designed to simplify application development through a set of domain-specific languages and extensions. It functions as a programmatic UI DSL, an SQLite wrapper, an SDK utility, and an asynchronous framework. The project provides a declarative layout system that allows developers to build user interfaces through code instead of static XML markup. It distinguishes itself by offering a fluent database layer that eliminates manual cursor management and a concurrency system that uses weak references to prevent memory leaks in activities. The library covers broad
Simplifies Android SQLite database operations, including schema management and cursor-free result parsing.
Stetho is a debug bridge that connects Android applications to Chrome Developer Tools. It allows for the real-time inspection of network traffic, internal application state, and the user interface layout directly within a desktop browser. The project provides specialized inspectors for analyzing Android-specific components. This includes a network inspector for capturing HTTP requests and responses, an SQLite database browser for querying local storage, and a view hierarchy inspector for mapping UI elements and styles. Additional capabilities cover runtime execution via an embedded JavaScrip
Enables querying and visualizing SQLite databases and local storage directly from a desktop browser.
greenDAO is an object-relational mapping library for Android that maps Java objects to SQLite databases. It provides infrastructure for high-performance data persistence by translating data objects into database records and vice versa. The library implements a type-safe query builder for retrieving records across multiple entities using joins and relationship chaining. It also includes a security layer that provides full-disk encryption for the SQLite database to prevent unauthorized access to stored information. The system utilizes compile-time code generation to create mapping classes, avo
Manages SQLite persistence on Android by mapping objects to database records without raw SQL.
Android-Debug-Database is a specialized utility for extracting, inspecting, and editing mobile data on Android devices. It serves as a database debugger and SQLite inspector that provides a web-based interface for managing database records and shared preference key-value stores. The project distinguishes itself by supporting encrypted database decryption via provided passwords and the ability to map and inspect volatile in-memory databases. It also includes a data export tool that transfers database files from the private application directory to a local machine for external analysis. The to
Provides specialized tools for managing and debugging SQLite databases specifically within the Android ecosystem.
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
Simplifies SQLite database management on Android through an object-oriented approach to storage and retrieval.
DBFlow est une bibliothèque d'ORM (Object-Relational Mapping) pour Android qui mappe les objets Java vers des bases de données SQLite. Elle sert de couche de persistance conçue pour réduire le code boilerplate manuel via un accès automatisé à la base de données et un mappage d'entités. Le projet se distingue par un constructeur de requêtes sécurisé en termes de types qui utilise une interface fluide pour construire des requêtes avec des vérifications à la compilation. Il fournit un chiffrement transparent au niveau du fichier pour sécuriser les données sensibles et un wrapper réactif qui diffuse les changements de base de données aux abonnés pour des mises à jour en temps réel. Les capacités supplémentaires incluent l'exécution de requêtes asynchrones pour éviter de bloquer le thread principal de l'application et la pagination par blocs pour charger de grands jeux de données. La bibliothèque utilise la génération de code basée sur des annotations pour automatiser la création de la plomberie de base de données.
Maps Java objects to SQLite databases to reduce boilerplate in Android applications.
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.
Provides a comprehensive persistence framework for managing SQLite databases within the Android ecosystem.
ActiveAndroid is an object-relational mapper and data persistence library for Android. It serves as a high-level wrapper for SQLite databases, translating database records into class instances to facilitate data manipulation. The library enables data persistence without the need to write manual SQL queries. It maps database rows to Java objects, allowing records to be saved, retrieved, and deleted using object-oriented methods. The toolkit covers local mobile data storage and database management, providing a layer that links database table structures to specific object properties.
Manages schemas and result parsing specifically within the Android ecosystem for SQLite databases.
Sqlbrite is a reactive SQLite database manager and lightweight wrapper for Android. It functions as a reactive SQL library that converts standard SQLite queries into observable streams, allowing the application to emit new results automatically when underlying database tables change. The project provides a mechanism for tracking changes to specific database tables, triggering query refreshes without manual polling. It also includes an atomic transaction manager to group multiple SQL modifications into single units, ensuring data integrity and preventing redundant notifications. The library h
Provides a lightweight wrapper around SQLiteOpenHelper for managing local persistence and schemas on Android.