Replies: 1 comment
-
There's native Python libraries for SQLite.
Docker is only a fancy packaging/ring-fencing system, it doesn't change how the application behaves.
This is completely irrelevant to this project. Security and access control depends on what you want, not the project. You should check what SQLite offers and what JDBC offers, and if that suits you. |
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
-
Gentlefolk,
I'm a big fan of SQLite. I am designing an experiment management system and am considering using SQLite as the core storage engine. Part of the design requires a data URL to allow data sources/computational nodes to write intermediate and final results to the management server. As
sqlite-jdbc
looks like a natural network service for my architecture, I have a few questions and hope this community can provide me some guidance.First a few notes/assumptions/observations:
sqlite-jdbc
utilizes Java threading to open SQLite DB files on unique threads.sqlite-jdbc
will open files created by a separate app at the location in thejdbc:
URL.Now my questions:
sqlite-jdbc
? Many data science applications use PANDAS, which uses SQLAlchemy.sqlite-jdbc
looks like it could easily be deployed in a Docker/containerd
system. Has this been done in production?Thank you in advance for any information you may care to share.
Anon,
Andrew
Beta Was this translation helpful? Give feedback.
All reactions