drift icon indicating copy to clipboard operation
drift copied to clipboard

Drift is an easy to use, reactive, typesafe persistence library for Dart & Flutter.

Results 306 drift issues
Sort by recently updated
recently updated
newest added

One suggestion, add some field(s) to `@UseMoor` where you need to list the used converters and return types. This forces the imports and maybe even allows to validate some stuff...

enhancement
generator

Currently, to form a more complicated Dart query, one would write ```dart (select(table) ..orderBy([(row) => OrderingTerm.asc(row.id)]) ..limit(10)) .watch(); ``` That's not good, but it quickly gets worse when using joins...

enhancement
dart-dsl

iOS. Release mode. App size for simple ios app with one pub dependency(_msgpack_dart_) before adding _moor_ffi_: bundle: **51.5 Mb** app on device: **51.7 Mb** After adding _moor_ffi_ and using example...

Hi @simolus3 I am starting the moor isolate on main thread as described in your documentation. The steps I have followed are as follows: 1. Start isolate on main thread....

``` #0 wrapDatabaseException (package:sqflite/src/exception_impl.dart:11) #1 SqfliteDatabaseFactoryImpl.wrapDatabaseException (package:sqflite/src/factory_impl.dart:29) #2 _SqfliteDatabaseBase&Object&SqfliteDatabaseMixin.safeInvokeMethod (package:sqflite/src/database_mixin.dart:183) #3 _SqfliteDatabaseBase&Object&SqfliteDatabaseMixin.txnRawInsert. (package:sqflite/src/database_mixin.dart:340) #4 _SqfliteDatabaseBase&Object&SqfliteDatabaseMixin.txnSynchronized. (package:sqflite/src/database_mixin.dart:290) #5 BasicLock.synchronized (package:synchronized/src/basic_lock.dart:31) #6 _SqfliteDatabaseBase&Object&SqfliteDatabaseMixin.txnSynchronized (package:sqflite/src/database_mixin.dart:286) #7 _SqfliteDatabaseBase&Object&SqfliteDatabaseMixin.txnWriteSynchronized (package:sqflite/src/database_mixin.dart:307) #8 _SqfliteDatabaseBase&Object&SqfliteDatabaseMixin.txnRawInsert (package:sqflite/src/database_mixin.dart:339) #9 _SqfliteDatabaseBase&Object&SqfliteDatabaseMixin&SqfliteDatabaseExecutorMixin.rawInsert...

bug
needs-info

```dart moor_flutter: ^2.0.0 moor: ">=2.0.0" moor_generator: ^2.0.0 ``` after some opening and closing application i had get error and after opening again app i get this error: > Failed to...

I have a json column that is stored in the database as `TEXT` but when calling `toJson` I don't want to convert it to a string. Unfortunately this is not...

You cannot name any database columns with the same name as any of the `Table` abstract class methods. This means, for instance, that you cannot have a column of 'text',...

enhancement