Skip to content

Commit 94ec140

Browse files
authored
Update SQLite usecase (#278)
## What Did You Change? Formatting of SQLite usecases ## Do You Want Support (syntax, design, etc)? No
1 parent 7619976 commit 94ec140

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

user-guide/usecases/brandenberg-sqlite/usecase.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -124,18 +124,18 @@ A **flat file database** stores data in a single, self-contained file without th
124124
**What is SQLite?**
125125
SQLite is a lightweight relational database that stores everything in a single file. Unlike server-based databases, SQLite requires no installation, configuration, or maintenance. It's like having a powerful database engine built right into your data file.
126126

127-
🔑 **Key Characteristics of SQLite**
127+
**Key Characteristics of SQLite**
128128

129-
1. **🗃️ Self-Contained**: Complete database in a single file
130-
2. **🚀 Serverless**: No installation, configuration, or administration needed
131-
3. **🌍 Cross-Platform**: Works on Windows, Mac, Linux
132-
4. **Fast**: Optimized for read operations and small to medium datasets
133-
5. **🛡️ ACID Compliant**: Atomic, Consistent, Isolated, Durable transactions
134-
6. **📝 SQL Standard**: Uses familiar SQL syntax with some extensions
129+
1. **Self-Contained**: Complete database in a single file
130+
2. **Serverless**: No installation, configuration, or administration needed
131+
3. **Cross-Platform**: Works on Windows, Mac, Linux
132+
4. **Fast**: Optimized for read operations and small to medium datasets
133+
5. **ACID Compliant**: Atomic, Consistent, Isolated, Durable transactions
134+
6. **SQL Standard**: Uses familiar SQL syntax with some extensions
135135

136136
**When to Use SQLite:**
137137

138-
**Perfect for:**
138+
**Perfect for:**
139139

140140
- **Multi-table research projects** (experiments, specimens, sensors, measurements)
141141
- **Data with complex relationships** (one experiment → many specimens → many tests)
@@ -145,7 +145,7 @@ SQLite is a lightweight relational database that stores everything in a single f
145145
- **Interactive analysis** requiring frequent queries and filtering
146146
- **Data that evolves over time** (adding new experiments, updating results)
147147

148-
🆚 **SQLite vs Other Databases**
148+
**SQLite vs Other Databases**
149149

150150
| Feature | SQLite | MySQL/PostgreSQL | Excel/CSV |
151151
|---------|--------|------------------|-----------|
@@ -157,7 +157,7 @@ SQLite is a lightweight relational database that stores everything in a single f
157157
| **Data Integrity** | ACID transactions | ACID transactions | Manual validation |
158158
| **Size Limit** | 281 TB theoretical | Very large | Memory limitations |
159159

160-
**Research Scenarios:**
160+
**Research Scenarios:**
161161

162162
- Earthquake engineering databases tracking buildings, ground motions, and damage
163163
- Laboratory testing programs with specimens, test protocols, and results
@@ -195,7 +195,7 @@ When you want to analyze acceleration trends, Parquet only reads the acceleratio
195195

196196
**When to Use Parquet:**
197197

198-
**Perfect for:**
198+
**Perfect for:**
199199

200200
- **Large analytical datasets** (> 100MB) requiring frequent calculations
201201
- **Time series analysis** with millions of sensor readings
@@ -245,7 +245,7 @@ earthquake_study.h5
245245

246246
**When to Use HDF5:**
247247

248-
**Perfect for:**
248+
**Perfect for:**
249249

250250
- **Complex scientific datasets** with multiple related arrays
251251
- **Multi-dimensional data** (3D stress fields, 4D spatio-temporal data)
@@ -395,4 +395,4 @@ This notebook contains practical examples of SQLite database operations for NHER
395395
5. Import/export workflows for sharing research data
396396
6. Quality control and validation procedures
397397

398-
Try the SQLite example on Jupyter: [![DesignSafe](/user-guide/img/Open-in-DesignSafe.svg)](https://jupyter.designsafe-ci.org/hub/user-redirect/lab/tree/CommunityData/Use%20Case%20Products/SQLite/SQLiteExample.ipynb)
398+
Try the SQLite example on Jupyter: [![DesignSafe](/user-guide/img/Open-in-DesignSafe.svg)](https://jupyter.designsafe-ci.org/hub/user-redirect/lab/tree/CommunityData/Use%20Case%20Products/SQLite/SQLiteExample.ipynb)

0 commit comments

Comments
 (0)