Skip to content

Commit 25973a0

Browse files
yet more h2 / h3 shuffling
1 parent 920d919 commit 25973a0

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

modules/hello-world/pages/student-record-developer-tutorial.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ After following the instructions to install SDKMan, open a terminal window and r
3333

3434

3535
[#database-design]
36-
=== Data Model
36+
== Data Model
3737

3838
The model consists of three record types:
3939

@@ -46,7 +46,7 @@ Students can take more than one course at a time.
4646
*enrollment*:: Information related to courses the students are taking.
4747
In a relational database, this is usually a link record that creates a relationship between a student and a course.
4848

49-
==== Relational Model
49+
=== Relational Model
5050

5151
In a relational model, the database contains a list of students and a list of courses.
5252
Each student can enroll in multiple courses.
@@ -60,7 +60,7 @@ include::partial$diagrams/student-record-erd.puml[]
6060

6161
The `enrollment` table highlights a challenge with the relational model, each table is based on a fixed schema that only supports a single data object type, which means you cannot store a student in the same table as their enrollment record.
6262

63-
==== Document Model
63+
=== Document Model
6464

6565
Couchbase uses a document model that stores each record as a JSON document.
6666
The document model:
@@ -185,7 +185,7 @@ collection:: Contains a set of documents. Couchbase provides you with a default
185185
For more information, see xref:cloud:clusters:data-service/about-buckets-scopes-collections.adoc[Buckets, Scopes, and Collections].
186186

187187

188-
== Create a Bucket, Scope, and Collection
188+
=== Create a Bucket, Scope, and Collection
189189

190190
To continue this tutorial, you must create a bucket to hold all student data, a scope to narrow down the data into only data related to an art school, and two collections to narrow it down further into art school students and art school courses.
191191

@@ -461,7 +461,7 @@ If you come across errors in your console, see the <<#roubleshooting,troubleshoo
461461
You can retrieve your records using the <<#retrieve-with-query-editor,query editor>> or the <<#retrieve-with-sdk,SDK>>.
462462

463463
[#retrieve-with-query-editor]
464-
=== With the Query Editor
464+
=== Retrieving Records with the Query Editor
465465

466466
To retrieve the records with the Query Editor, you must first define an index.
467467

@@ -597,7 +597,7 @@ The `META()` function call returns any property contained inside the document's
597597

598598

599599
[#retrieve-with-sdk]
600-
=== With the SDK
600+
=== Retrieving Records with the SDK
601601

602602
You can also use {sqlpp} queries to retrieve your records with the SDK.
603603
Unlike the query editor, you must include the name of the bucket and the scope to fully qualify the name of the collection in the {sqlpp} statement in your application.

0 commit comments

Comments
 (0)