Skip to content

Commit 3d851ca

Browse files
committed
Welcome View
1 parent 200ff21 commit 3d851ca

File tree

3 files changed

+35
-13
lines changed

3 files changed

+35
-13
lines changed

content/docs/guides/stored-procedure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Stored Procedure"
3-
weight: 11
3+
weight: 12
44
draft: false
55
---
66

content/docs/guides/table.md

+15-12
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ From here you can execute SQL Statements against the table as follows
1717
We need to insert a single record to the table.
1818

1919
```java
20-
// INSERT INTO movie VALUES('Inception', 'Christopher Nolan')
20+
/** INSERT INTO movie
21+
* VALUES('Inception', 'Christopher Nolan')
22+
* /
2123
movieStore
2224
.insert()
2325
.values(new Movie(null, "Inception", "Christopher Nolan"))
@@ -28,8 +30,8 @@ We need to insert multiple records to the table.
2830
2931
```
3032
/**
31-
INSERT INTO movie (title, directed_by) VALUES
32-
('Pulp Fiction', 'Quentin Tarantino'),
33+
INSERT INTO movie (title, directed_by)
34+
VALUES ('Pulp Fiction', 'Quentin Tarantino'),
3335
('The Matrix', 'Lana Wachowski'),
3436
('Dunkirk', 'Christopher Nolan'),
3537
('Fight Club', 'David Fincher'),
@@ -38,12 +40,12 @@ INSERT INTO movie (title, directed_by) VALUES
3840
*/
3941
movieStore
4042
.insert()
41-
.values(new Movie(null, "Pulp Fiction", "Quentin Tarantino"))
42-
.values(new Movie(null, "The Matrix", "Lana Wachowski"))
43-
.values(new Movie(null, "Dunkirk", "Christopher Nolan"))
44-
.values(new Movie(null, "Fight Club", "David Fincher"))
45-
.values(new Movie(null, "Interstellar", "Christopher Nolan"))
46-
.values(new Movie(null, "The Social Network", "David Fincher"))
43+
values(new Movie(null, "Pulp Fiction", "Quentin Tarantino"),
44+
new Movie(null, "The Matrix", "Lana Wachowski")
45+
new Movie(null, "Dunkirk", "Christopher Nolan"),
46+
new Movie(null, "Fight Club", "David Fincher"),
47+
new Movie(null, "Interstellar", "Christopher Nolan"),
48+
new Movie(null, "The Social Network", "David Fincher"))
4749
.execute();
4850
```
4951

@@ -100,15 +102,16 @@ Update a record with multiple where clause
100102
// WHERE id=1 AND title='Fight Club'
101103
movieStore
102104
.update()
103-
.set(new Movie(null, "Blood Diamond", "Martyn Scorsese"))
104-
.where(id().eq(1).and().title().eq("Fight Club"))
105+
.set(new Movie(null, "Blood Diamond", "Martyn Scorsese"))
106+
.where(
107+
id().eq(1).and()
108+
.title().eq("Fight Club"))
105109
.execute();
106110
```
107111

108112
Update a record with multiple where clause amd selected columns
109113

110114
```java
111-
112115
// UPDATE movie
113116
// SET directed_by='Martyn Scorsese'
114117
// WHERE id=1 AND title='Fight Club'

content/docs/guides/view.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "View"
3+
weight: 11
4+
draft: false
5+
---
6+
7+
View will act as inteface for all the SQL operations againts views. For.eg For Movie view, you can get the Store from DataManages as given below
8+
9+
```java
10+
MovieView movieView = DataManager.getManager().getMovieView();
11+
```
12+
13+
## Materialized View
14+
15+
We can refresh Materialized View
16+
17+
```java
18+
movieView.refresh;
19+
```

0 commit comments

Comments
 (0)