tarsier_local_storage 1.0.0 copy "tarsier_local_storage: ^1.0.0" to clipboard
tarsier_local_storage: ^1.0.0 copied to clipboard

A simple and flexible library for managing SQLite databases in Dart and Flutter applications.

pub package package publisher

A simple and flexible library for managing SQLite databases in Dart and Flutter applications. It simplifies database operations with reusable abstractions for tables and models, making it easy to build scalable and maintainable applications.

Features #

  • Easy Database Management: Initialize and manage SQLite databases effortlessly.
  • Dynamic Tables: Define table schemas dynamically with support for CRUD operations.
  • Model Mapping: Seamlessly map database rows to model objects.
  • Cross-Platform: Supports Android, iOS, Windows, Linux, and more.

Getting Started #

Add the package to your pubspec.yaml:

dependencies:
  tarsier_local_storage: ^1.0.0

Run the following command:

flutter pub get

Usage #

  • Define a Model #

    Create a class that extends BaseTableModel to represent a database entity:
import 'package:tarsier_local_storage/tarsier_local_storage.dart';

class User extends BaseTableModel {
  final int? id;
  final String name;
  final DateTime createdAt;

  User({
    this.id,
    required this.name,
    required this.createdAt,
  });

  factory User.fromMap(Map<String, dynamic> map) {
    return User(
      id: map['id'] as int?,
      name: map['name'] as String,
      createdAt: DateTime.parse(map['created_at'] as String),
    );
  }

  @override
  Map<String, dynamic> toMap() {
    return {
      'id': id,
      'name': name,
      'created_at': createdAt.toIso8601String(),
    };
  }

  static const String tableName = 'users';

  static Map<String, String> get schema => {
        'id': 'INTEGER PRIMARY KEY',
        'name': 'TEXT',
        'created_at': 'TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP',
      };
}
  • Define a Table #

    Create a table class by extending BaseTable:
import 'package:tarsier_local_storage/tarsier_local_storage.dart';

import 'user_model.dart';

class UserTable extends BaseTable<User> {
  UserTable()
      : super(
          tableName: User.tableName,
          schema: User.schema,
          fromMap: (map) => User.fromMap(map),
          toMap: (user) => user.toMap(),
        );
}
  • Initialize the Database #

    Initialize the database and pass the table definitions:
void main() async {
  await TarsierLocalStorage().init('app.db', [
    UserTable(), // Table class extended by BaseTable
    ...          // Add more table class here
  ]);

  final userTable = UserTable();

  // Add a new user
  await userTable.createObject(User(id: 1, name: 'John Doe'));

  // Retrieve all users
  final users = await userTable.all();
  print(users); // Output: [Instance of 'User']
}

πŸŽ–οΈ License #

This project is licensed under the MIT License. See the LICENSE file for details.

🐞 Contributing #

Contributions are welcome! Please submit a pull request or file an issue for any bugs or feature requests on GitHub.

3
likes
0
points
29
downloads

Publisher

unverified uploader

Weekly Downloads

A simple and flexible library for managing SQLite databases in Dart and Flutter applications.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

sqflite, sqflite_common_ffi

More

Packages that depend on tarsier_local_storage