Simon Binder

Results 752 comments of Simon Binder

@pranay2210 Can you describe your scenario some more? Like what kind of tables you have and what query you need. If I know more about your use case I can...

I can do the general work necessary to provide a language selection on the website, but most of the translations would have to come from the community. Keeping translated documentation...

I don't think there is (apart from maybe web workers).

That's weird. I can't reproduce this with a simple example in a moor file: ```sql CREATE TABLE "Group" ( id INTEGER NOT NULL PRIMARY KEY ); x: SELECT * FROM...

> Ok, quick update, just figured out that I included a syntax error inside the SQL version of the table, after fixing which generation seems to finish without any warnings...

It should work in theory, but you might run into synchronization problems if you open the database from Moor & Room simultaneously. If you open the database via `FlutterQueryExecutor.inDatabasePath`, the...

Do you only get that on production or can you reproduce this in development too? Are you opening multiple databases at the same time?

If there are multiple databases open at the same time, the locking issue can happen (especially if one of them has a long-running transaction or many writes). You might be...

It's not immediately helpful, but I can outline my plans for this in the long-term from the perspective as a library author. The problem you mentioned is that, especially with...

That's an interesting question! In general, I think the cost of a sqlite query tends to be overestimated because most of us are coming from database servers where each query...