๐พ Archived View for bbs.geminispace.org โบ u โบ michaelnordmeyer โบ 985 captured on 2023-09-08 at 19:08:35. Gemini links have been rewritten to link to archived content
โฌ ๏ธ Previous capture (2023-07-22)
โก๏ธ Next capture (2023-09-28)
-=-=-=-=-=-=-
Re: "Exporting Bubble data in a "raw" format?"
Doesn't Bubble require a MariaDB? I would expect an export to be importable without much effort again. Otherwise I would prefer JSON.
2023-05-25 ยท 3 months ago
1. SQLite3 database file
โโโโโโโโโโโโโโโโโโโโโโโโ 16%
2. SQL database dump (text file with SQL)
โโโโโโโโโโโโโโโโโโโโโโโโ 0%
3. JSON file with structured data
โโโโโโโโโโโโโโโโโโโโโโโโ 79%
4. YAML file
โโโโโโโโโโโโโโโโโโโโโโโโ 5%
5. TOML file
โโโโโโโโโโโโโโโโโโโโโโโโ 0%
19 votes were cast.
Yeah I'm using MariaDB. Importing is not straightforward regardless of the format, because there's a need to remap ID numbers so they don't conflict with existing ones, and one has to check whether the same data is already present in the database to avoid duplication.
JSON is fine. It is easy enough to reimport well-structured JSON into a relational database if needed -- or use import raw JSON into a RDBMS and use JSON_* SQL functions directly.
seriously though, I believe that is a usecase you do not optimize for
i'd like to contribute and agree w/ some ppl in the comments in reference to XML
2023-05-28 ยท 3 months ago
JSON (and to a lesser extent CSV) is pretty much ubiquitous for this kind of thing in my opinion, and is use-case-agnostic (which SQL is not)
I'm in favor of JSON for the sake of its simplicity and universality.
@Addison I agree, and it's the same reasoning I had for voting `json`. Either json or csv are both easy to parse in any language so making sense of the raw data outside the context of a database is possible.
I think the results are starting to look pretty clear. I will do a JSON export and consider an SQLite file as a secondary option.
2023-05-29 ยท 3 months ago
Exporting Bubble data in a "raw" format? โ In addition to the human-readable Gempub archives, I've been considering various options for exporting your data out of Bubble in case someone wants to get their data out for other purposes. For example, one might want to use their posts as a basis for a personal capsule, or run some scripts to post-process them somehow. What would be the best "raw" machine-readable export format? Any good alternatives not listed?
๐ฌ skyjake ยท 10 comments ยท 2023-05-25 ยท 4 months ago ยท ๐ณ๏ธ