Replies: 1 comment
-
I've added experimental support in case anyone wants to use it
but expect it to fail and not behave at all how you'd expect. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@hujambo-dunia asked me recently about sqlite3 support. While on a meeting today I took a look at what that would require by running a few of the most commonly used queries just piped straight to sqlite3 rather than integrated properly, just to see what it would look like.
This query doesn't work for two reasons that are relatively fixable (or solved via a sed pre-query execution)
at time zone 'utc'
is not valid in sqlite3, and is heavily used in gxadmin to get proper current timesAnd on that isn't really as fixable:
maybe it could be rewritten to avoid those, but it seems like a fair bit of work to make this speak two dialects of sql without an ORM. While it is probably theoretically possible, in practice I think it would be quite difficult and not worth the ROI as this tool focuses on production use.
But I'm opening the discussion in case people want to comment on this or provide their ideas for working around these issues.
Beta Was this translation helpful? Give feedback.
All reactions