Skip to content

Commit 208ba48

Browse files
committed
wip
1 parent 6f06a18 commit 208ba48

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

sqlite-cloud/create-database.mdx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ status: publish
66
slug: create-database
77
---
88

9+
import VideoPlayer from '@commons-components/Video/VideoPlayer.astro';
10+
import uploadDb from '@docs-website-assets/introduction/video/dashboard_upload_db.mp4';
11+
import createDb from '@docs-website-assets/introduction/video/dashboard_create_db.mp4';
12+
913
You can import an existing SQLite databases, or create new databases using the SQLite Cloud UI, API, or client libraries.
1014

1115
## Uploading an existing SQLite Database
@@ -26,15 +30,16 @@ To upload a local SQLite database via the SQLite Cloud UI, navigate to the Datab
2630

2731
### Via Dashboard UI
2832
To import a database from the UI, navigate to the Databases tab and click the "Upload Database" button.
29-
![Dashbord Upload Database](@docs-website-assets/introduction/dashboard_upload_db.png)
33+
34+
<VideoPlayer src={uploadDb} />
3035

3136
Select the database file you want to upload, and click "Upload Database". The database will be available in your cluster within a few minutes.
3237

3338
## Creating a new database
3439
### From the Dashboard
3540

3641
To create a new database from the SQLite Cloud UI, navigate to the Databases tab and click the "Create Database" button.
37-
![Dashboard Create Database](@docs-website-assets/introduction/dashboard_create_database.png)
42+
<VideoPlayer src={createDb} />
3843

3944
The default encoding is set to UTF-8, and the default page size is 4096KB.
4045

sqlite-cloud/write-data.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@ category: getting-started
55
status: publish
66
slug: write-data
77
---
8+
import VideoPlayer from '@commons-components/Video/VideoPlayer.astro';
9+
import studioInsert from '@docs-website-assets/introduction/video/dashboard_studio.mp4';
10+
811

912
After you've created a database in SQLite Cloud, you can start writing data to it. You can write data to your cluster using the SQLite Cloud UI, API, or client libraries.
1013

1114
## Writing data with the SQLite Cloud UI
1215
Navigate to the console tab in the left-hand navigation. From here, you can run SQL commands against your cluster. Use the optional dropdown menus to select a database and table.
1316

14-
![Dashboard Projects](@docs-website-assets/introduction/dashboard_console.png)
17+
<VideoPlayer src={studioInsert} />
1518

1619
### Example
1720
```sql

0 commit comments

Comments
 (0)