Simon Binder

Results 751 comments of Simon Binder

I'll try to release a new moor version this weekend. The fixes required pretty substantial changes to how queries are analyzed, so I couldn't push a small hotfix release.

The encrypted executor uses [`sqflite_sqlcipher`](https://github.com/davidmartos96/sqflite_sqlcipher) as implementation, which supports iOS, Android and macOS. If you don't need another OS or a `moor_ffi`-only feature, using that would probably be the best...

Thanks for the report, I'll look into it. You're using `moor_ffi`, correct? Did this happen on Android or iOS? Did you create the virtual table after migrating to moor?

You can use moor together with a package like [incrementally_loading_listview](https://pub.dev/packages/incrementally_loading_listview) by using an appropriate `LIMIT` on your query.

This should work: ```dart Expression date(Expression time) { return FunctionCallExpression('date', [time]); } // Then, you can query like this final formattedDate = date(rows.date); final rowCount = countAll(); final query =...

Thanks for trying out type converters in moor files, @kuhnroyal! I'm don't think forcing users to list type converters in `@UseMoor` is a convenient api. It's safe, sure, but it...

Does this happen consistently on these devices (so, even if you clear you app's data in the system setting and launch it again)? My guess is that you've perhaps added...

> As I'm also writing the same entry to an FTS table, through a trigger and it does not update if I use the replace mode on the insert Interesting....

Nothing obvious comes to mind, sorry. I would have to do some research to find out why this is happening. It might be that fts5 tokenization and indexing is just...

You you just use ```dart select(firstTable).join([ innerJoin(secondTable, condition), innerJoin(thirdTable, condition), innerJoin(fourthTable, condition), ]) ``` Do you need anything special I'm missing?