From a087944481ed8518695708ef30247f6e25cab38a Mon Sep 17 00:00:00 2001 From: sjbrandenberg Date: Tue, 23 Jul 2024 18:31:21 +0000 Subject: [PATCH] deploy: b854f13c7260c30b1d2ad6ce8a13c65f15b20460 --- SQLite_Example.html | 1 + _sources/SQLite_Example.ipynb | 1 + 2 files changed, 2 insertions(+) diff --git a/SQLite_Example.html b/SQLite_Example.html index ea543fc..5810394 100644 --- a/SQLite_Example.html +++ b/SQLite_Example.html @@ -384,6 +384,7 @@

Contents

Creating a SQLite database#

2024 NHERI Computational Academy
Scott J. Brandenberg sjbrandenberg@g.ucla.edu

+

Try on DesignSafe

About SQLite#

This script will create a SQLite database, which is a lightweight file-based SQL database engine. It comes installed with Python, so you don’t need to install any special packages or set up a SQL server on your computer to use it. Details can be found here: https://www.sqlite.org/. There are, of course, other relational database management systems, like MySQL, Postgres, etc. However, to use these database engines, you either need to set up those databases on a server, or use software to make your computer simulate a server (e.g., XAMPP). So we’ll use SQLite here.

diff --git a/_sources/SQLite_Example.ipynb b/_sources/SQLite_Example.ipynb index 543f916..ab899ce 100644 --- a/_sources/SQLite_Example.ipynb +++ b/_sources/SQLite_Example.ipynb @@ -10,6 +10,7 @@ "2024 NHERI Computational Academy \n", "Scott J. Brandenberg \n", "\n", + "[![Try on DesignSafe](https://raw.githubusercontent.com/geoelements/LearnMPM/main/DesignSafe-Badge.svg)](https://jupyter.designsafe-ci.org/user/name/notebooks/CommunityData/Training/2024-NHERI-AI-Academy/Day2/SQLite_Example.ipynb.ipynb)\n", "## About SQLite\n", "\n", "This script will create a SQLite database, which is a lightweight file-based SQL database engine. It comes installed with Python, so you don't need to install any special packages or set up a SQL server on your computer to use it. Details can be found here: https://www.sqlite.org/. There are, of course, other relational database management systems, like MySQL, Postgres, etc. However, to use these database engines, you either need to set up those databases on a server, or use software to make your computer simulate a server (e.g., XAMPP). So we'll use SQLite here.\n",