othercorey

Results 200 comments of othercorey

I don't know what this does so up to you. Guess it depends if 13.0 restricts dependencies.

We'd have to detect the support since sqlite 3.38 isn't our minimum version yet, right?

So, looking into this, I don't think the original issue can be addressed. There is no "json" field in sqlite, it's only text with json functions. There's nothing for us...

> example_json JSON_TEXT I cannot find any documentation on JSON_TEXT. What I found said they cannot add a new type. Can you show me?

Thanks for explaining. I wanted to know how you ended up with JSON_TEXT. Since it's arbitrary, we should try to "standardize" it so it's not such a hidden feature for...

I know it's "technically" a breaking change, but how many developers are actually using JSON as their column type currently since it's always text? I wonder if we could change...

> > e.g. for generating passwords. > > What scenarios do you find yourself needing to do this in? How do end users get the generated passwords? Should we call...

Is it throwing a JsonException? If so, is the previous exception set? There is a new wrapper exception in 4.0, but I suspect it's just wrapping the same exception you're...

I think you'll have to customize it to encode the previous error message if the previous is the custom exception. In 4.0, it throws a SerializationFailureException that we might be...

I'm not sure what the expected behavior is for exceptions thrown here. 4.0 simply wraps the exception caught, so you'd have a more specific exception to configure in the new...