Klemen Tusar
Klemen Tusar
Looks like the problem is in the setup of your foreign keys as they don't seem to point to anything. If you query for the [foreign_key_list](https://www.sqlite.org/pragma.html#pragma_foreign_key_list) ```sql PRAGMA foreign_key_list("attendance"); ```...
I have used DBeaver do inspect it, however, that doesn't help me much in terms of the script which uses ```sql PRAGMA foreign_key_list("attendance"); ``` to get the keys programatically. I'm...
It looks like this is _shorthand form_ foreign key that indirectly references the primary key of the linking table as is [described here](https://www.sqlite.org/foreignkeys.html#fk_indexes): > ... shorthand form to create the...
Hmm, getting to the bottom of this. [Looks like you can't have foreign keys on TEXT / BLOB.](https://dev.mysql.com/doc/refman/8.0/en/create-table-foreign-keys.html) > Index prefixes on foreign key columns are not supported. Consequently, [BLOB](https://dev.mysql.com/doc/refman/8.0/en/blob.html)...
Upgrade to [v2.5.0](https://github.com/objectbox/objectbox-dart/blob/main/objectbox/CHANGELOG.md#250-2024-02-14) and use file-less in-memory databases for your tests.
https://stackoverflow.com/questions/69631115/flutter-objectbox-unit-testing-failed-to-load-dynamic-library-lib-objectbox-d
@greenrobot-team please also mention in the docs how to properly get the default path of the ObjectBox store in Flutter, i.e. ```dart import 'package:path/path.dart' as path; import 'package:path_provider/path_provider.dart'; Future main()...
I still see this on Flutter **v3.22.1** using Impeller with fl_chart **v0.68.0**. It's fine running on Skia. 
@normidar @eloayoubi @luisbelo91 @ManuelRauber @hngouveia01 should we / you / I make a bug report on flutter/flutter?
> Hi, @techouse. Don't get me wrong, I know you're a tech savvy :) But there are two ways of disabling the Impeller. Have you tried both? Via .plist and...