Questions tagged [flutter-objectbox]

ObjectBox is a super-fast database storing Dart objects locally.

ObjectBox is a super-fast database storing Dart objects locally.

High performance - improving response rates and enabling real-time applications.

ACID compliance - Atomic, Consistent, Isolated, Durable.

Relations - object links / relationships are built-in.

Scalable - grows with your app, handling millions of objects with ease.

Queries - filter data as needed, even across relations.

Statically typed - compile-time checks & optimizations.

Multiplatform - Android, iOS, macOS, Linux, Windows.

Schema migration - change your model with confidence.

ObjectBox Sync - keeps data in sync offline or online, between devices and servers.

Links:

112 questions
0
votes
2 answers

ObjectBox Dart/Flutter multi-isolate access

Creating a separate thread for a question stated in a comment... How does ObjectBox handle concurrent(by different threads/isolates) write requests? example of my use case: FCM "onBackgroundmessage" call runs in a different isolate, the same time…
vaind
  • 1,642
  • 10
  • 19
0
votes
1 answer

Should I use link/backlinks provided with ObjectBox or 4 flat files to have many-to-many relationship?

I have read the object box documentation for many-to-many relationship https://docs.objectbox.io/relations And also this solution for many-to-many relationship in noSQL firebase Many to Many relationship in Firebase What could be the issue if I go…
raphire
  • 198
  • 9
0
votes
1 answer

ObjectBox database not initializing in Flutter 2.0

I'm trying to use ObjectBox as the database in a flutter application. The following is the sample code. However, while execution I was returned with the error of "_store is not initialized". class _HomePageState extends State { ... //…
0
votes
2 answers

How to join tables in objectBox flutter

In my flutter project i m doing offline module using objectBox database.In this module i have three tables ItemMaster table,customerMaster table and customerWiseStock table. I have the data of itemMaster and customerMaster tables and i want to get…
Kalp Shah
  • 279
  • 2
  • 14
0
votes
1 answer

How many devices can be used simultaneously if using ObjectBox Sync to make synchronization?

We might have tens of millions of users in the future since our app is an Internet one serving users around the world. I'd like to know how many devices can be used concurrently to make synchronization using ObjectBox Sync?
Jim Gan
  • 19
  • 2
0
votes
1 answer

Flutter objectbox : Can I use for production APP (Mobile only Android & iOS)

I am new to Flutter and I had started using Hive DB but experiencing this issue. I am looking for one alternative and got ObjectBoxDB. Is ObjectBox is ready for production use? I need some recommendations from you all to choose the right Local…
Priyabrata
  • 629
  • 1
  • 8
  • 23
-2
votes
1 answer

May someone please assist me with this error?

I am trying to create a basic todo app in flutter using Objectbox as a database. This is the error: [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: ObjectBoxException: failed to create store: Incoming entity ID…
Tariro
  • 1
1 2 3 4 5 6 7
8