Skip to content

Commit 9f3d8d5

Browse files
committed
Content Changes
1 parent 845f2d6 commit 9f3d8d5

File tree

6 files changed

+25
-14
lines changed

6 files changed

+25
-14
lines changed

content/docs/guides/basics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ draft: false
66

77
**SQL Components** simplifies how your Java application interacts with relational databases by providing three core concepts:
88

9-
1. **Manager**: Handles database connections and manages access to various database objects.
9+
1. **DataManager**: Handles database connections and manages access to various database objects.
1010
2. **Model**: Represents the structure of database tables as simple Java objects (POJOs).
1111
3. **Store**: An interface that allows you to perform common database operations like **Select**, **Insert**, **Update**, and **Delete** on tables.

content/docs/guides/table.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ weight: 10
44
draft: false
55
---
66

7-
Store will act as inteface for all the SQL operations againts tables.
7+
Store will act as inteface for all the SQL operations againts tables. For.eg For Movie table, you can get the Store from DataManages as given below
8+
9+
```java
10+
MovieStore movieStore = DataManager.getManager().getMovieStore();
11+
```
12+
13+
From here you can execute SQL Statements against the table as follows
814

915
## Insert
1016

content/docs/why/_index.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ toc: true
66

77
Before diving into the "why," let’s first understand the problem SQL Components aims to solve.
88

9-
Consider a simple Java application that connects to a relational database like PostgreSQL to create a movie store. The database schema looks like this:
9+
> Consider a simple Java application that connects to a relational database like PostgreSQL to create a movie store.
10+
11+
The database schema looks like this:
1012

1113
```sql
1214
CREATE TABLE movie (
@@ -20,14 +22,14 @@ Now, let's add some movies:
2022

2123
```sql
2224
INSERT INTO movie (title, directed_by) VALUES
23-
('Inception', 'Christopher Nolan'),
24-
('The Dark Knight', 'Christopher Nolan'),
25-
('Interstellar', 'Christopher Nolan'),
26-
('Dunkirk', 'Christopher Nolan'),
27-
('Pulp Fiction', 'Quentin Tarantino'),
28-
('The Matrix', 'Lana Wachowski'),
29-
('Fight Club', 'David Fincher'),
30-
('The Social Network', 'David Fincher');
25+
('Inception', 'Christopher Nolan'),
26+
('Pulp Fiction', 'Quentin Tarantino'),
27+
('The Matrix', 'Lana Wachowski'),
28+
('Dunkirk', 'Christopher Nolan'),
29+
('Fight Club', 'David Fincher'),
30+
('Interstellar', 'Christopher Nolan'),
31+
('The Social Network', 'David Fincher'),
32+
('The Dark Knight', 'Christopher Nolan');
3133
```
3234

3335
Suppose you want to list the movies directed by `Christopher Nolan`. As a Java developer, your responsibilities include:

content/docs/why/jooq.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ Here’s how the same functionality looks with SQL Components:
3333

3434
```java
3535
List<Movie> movies = DataManager.getManager().getMovieStore()
36-
.select(directedBy().eq("Christopher Nolan"))
36+
.select()
37+
.where(directedBy().eq("Christopher Nolan"))
3738
.returning();
3839
```
3940

content/docs/why/jpa.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ In SQL Components, the same query to list movies directed by a particular direct
5959

6060
```java
6161
List<Movie> movies = DataManager.getManager().getMovieStore()
62-
.select(directedBy().eq("Christopher Nolan"))
62+
.select()
63+
.where(directedBy().eq("Christopher Nolan"))
6364
.returning();
6465
```
6566

content/docs/why/sql-builders.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ While SQL Builders abstract connection management, **SQL Components** offers add
5555

5656
```java
5757
List<Movie> movies = DataManager.getManager().getMovieStore()
58-
.select(directedBy().eq("Christopher Nolan"))
58+
.select()
59+
.where(directedBy().eq("Christopher Nolan"))
5960
.returning();
6061
```
6162

0 commit comments

Comments
 (0)