floor icon indicating copy to clipboard operation
floor copied to clipboard

The typesafe, reactive, and lightweight SQLite abstraction for your Flutter applications

Results 175 floor issues
Sort by recently updated
recently updated
newest added

On the path of #659, #667, #594, now analyzer is v5.x.

@Query('SELECT * FROM Entity WHERE id = :entity.id OR name = :entity.name') Future exists(Entity entity);

the entity is: @Entity(tableName: 'Task') class Task { final Uint8List ext; Task(this.ext); } the dao is : @dao abstract class TaskDao { @Query('update Task set ext = :ext') Future updateTaskExt(Uint8List...

Hopefully fixes #789 I'd like to add a test for this and make sure everything works, but I don't know how to run the tests^^ If I run them using...

How to create unique column.

floor_generator 1.4.2 depends on analyzer ^5.0.0 and many updated dependencies depends on analyzer ^6.4.1 ---- ### so kindly update analyzer version to be ^6.4.1

Right now [sqflite_common_ffi_web](https://pub.dev/packages/sqflite_common_ffi_web) is in an experimental state, but if we add the factory, we can support the web optionally. What do you think? Currently, floor doesn't support web and...

This can be more optimal and does not fail to perform ... the returning value can some times be interpreted as num. ((row.values.first ?? 0) as num).toDouble(), as double will...

#802 still an issue. any help?