SQLite usecase - #150
Merged
Merged
Conversation
wesleyboar
approved these changes
Jun 16, 2025
wesleyboar
left a comment
Collaborator
There was a problem hiding this comment.
Approved.
I add inconsequential comments.
I will add and explain solution to add to navigation in a follow-up PR, so this document can be merged thus live without further delay.
Comment on lines
+138
to
+146
| ✅ **Perfect for:** | ||
|
|
||
| - **Multi-table research projects** (experiments, specimens, sensors, measurements) | ||
| - **Data with complex relationships** (one experiment → many specimens → many tests) | ||
| - **Collaborative research** where data integrity is crucial | ||
| - **Projects requiring data validation** and quality control | ||
| - **Datasets with mixed data types** (text, numbers, dates, metadata) | ||
| - **Interactive analysis** requiring frequent queries and filtering | ||
| - **Data that evolves over time** (adding new experiments, updating results) |
Collaborator
There was a problem hiding this comment.
Note: DS User Guide supports —
a syntax for highlighting blocks with a standard set of icons and background colors (called "admonitions")
Suggested change
| ✅ **Perfect for:** | |
| - **Multi-table research projects** (experiments, specimens, sensors, measurements) | |
| - **Data with complex relationships** (one experiment → many specimens → many tests) | |
| - **Collaborative research** where data integrity is crucial | |
| - **Projects requiring data validation** and quality control | |
| - **Datasets with mixed data types** (text, numbers, dates, metadata) | |
| - **Interactive analysis** requiring frequent queries and filtering | |
| - **Data that evolves over time** (adding new experiments, updating results) | |
| !!! hint "Perfect for:" | |
| - **Multi-table research projects** (experiments, specimens, sensors, measurements) | |
| - **Data with complex relationships** (one experiment → many specimens → many tests) | |
| - **Collaborative research** where data integrity is crucial | |
| - **Projects requiring data validation** and quality control | |
| - **Datasets with mixed data types** (text, numbers, dates, metadata) | |
| - **Interactive analysis** requiring frequent queries and filtering | |
| - **Data that evolves over time** (adding new experiments, updating results) |
Caveats:
- This syntax is annoying because it requires indentation.
- An alternative syntax is not supported in tandem (so other syntax instances would need be updated to offer this).
- Neither syntax is a TACC standard (because of the above caveats).
- You have an emoji system that is not directly translatable to available admonitions.
— but given the caveats of using now, I do not recommend it yet.
wesleyboar
reviewed
Jun 16, 2025
Comment on lines
+1
to
+18
| /// html | header | ||
|
|
||
| ## SQLite Database Management in DesignSafe | ||
|
|
||
| SQLite3 Database Creation, Management, and Analysis | ||
| /// | ||
|
|
||
| **Brandenberg, S.J. - UCLA**<br/> | ||
| **Kumar, K. - UT Austin** | ||
|
|
||
| The example makes use of the following DesignSafe resources: | ||
|
|
||
| [Jupyter notebooks on DS Juypterhub](https://www.designsafe-ci.org/use-designsafe/tools-applications/analysis/jupyter/){target=_blank}<br/> | ||
| [SQLite Documentation](https://www.sqlite.org/docs.html){target=_blank}<br/> | ||
|
|
||
| | Scope | Notebook | Link | | ||
| | :-------: | :---------: | :---------: | | ||
| | Basic example | SQLiteExample.ipynb | [](https://jupyter.designsafe-ci.org/hub/user-redirect/lab/tree/CommunityData/Use%20Case%20Products/SQLite/SQLiteExample.ipynb) | |
Collaborator
There was a problem hiding this comment.
Thank you for using the existing practice. 🙂
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added a new usecase for SQLite
Although I added the usecase to dataanalyticscases.md file, I don't see it in the navigation.