Can multiple separate clients access the same single-file database at the same time?
DuckDB – An embeddable SQL database like SQLite, but supports Postgres features
71–80 of 167 posts
Re: DuckDB – An embeddable SQL database like SQLite, but supports Postgres features
#72Strict typing has been the one big feature missing from SQLite, that this presumably brings.
Re: DuckDB – An embeddable SQL database like SQLite, but supports Postgres features
#73I really wish ALL software project / framework / libary could follow the lead here. Instead of your marketing page telling me how world changing awesome tech you have, which really is a consumer marketing strategy. Just do it like DuckDB, When to use DuckDB ; When to not use DuckDB
Only thing wrong I saw was the detection of the platform. It detected my linux box as "Unix" and proposed I download OSX libs.
Re: DuckDB – An embeddable SQL database like SQLite, but supports Postgres features
#74Earlier quoted context omitted.
One of the authors here - portability of the storage is indeed one of our goals. We test that the same file can be loaded everywhere on different systems, including between ARM and x86. I should mention the storage is still very much a work-in-progress. We are actively working on redesigning the storage to add compression and other extra features, meaning the storage format can change and be incompatible between diff…
Couldn't you have used an already existing format for storage, e.g. Apache ORC?
Re: DuckDB – An embeddable SQL database like SQLite, but supports Postgres features
#75Re: DuckDB – An embeddable SQL database like SQLite, but supports Postgres features
#76E.g. would be used for offline statistical analysis
Alterntively, any way to export cli sql results as csv?
Re: DuckDB – An embeddable SQL database like SQLite, but supports Postgres features
#77I really wish ALL software project / framework / libary could follow the lead here. Instead of your marketing page telling me how world changing awesome tech you have, which really is a consumer marketing strategy. Just do it like DuckDB, When to use DuckDB ; When to not use DuckDB
Algorithms textbooks don't create marketing blurbs for linked lists...
Re: DuckDB – An embeddable SQL database like SQLite, but supports Postgres features
#78I really wish ALL software project / framework / libary could follow the lead here. Instead of your marketing page telling me how world changing awesome tech you have, which really is a consumer marketing strategy. Just do it like DuckDB, When to use DuckDB ; When to not use DuckDB
Re: DuckDB – An embeddable SQL database like SQLite, but supports Postgres features
#79“An embeddable column store for data science” (Pandas and dbplyer) would have been a good description at that time but the addition of JDBC/Java support expands the use cases.
Re: DuckDB – An embeddable SQL database like SQLite, but supports Postgres features
#80Strict typing has been the one big feature missing from SQLite, that this presumably brings.
Foreign keys enabled by default or by configuration setting would be another big feature missing from SQLite3, but I couldn't find any mention of foreign keys in DuckDB's documentation.