Skip to content

Commit 68a577a

Browse files
committedApr 21, 2022
Update reade me files
1 parent e864466 commit 68a577a

File tree

7 files changed

+7
-12
lines changed

7 files changed

+7
-12
lines changed
 

‎jdbc/mariadb-pool/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ Change `Service` constructor to use a `MariaDbPoolDataSource` and run the app ag
1414
in the **pom.xml** file).
1515
- [Apache Maven](https://maven.apache.org).
1616
- MariaDB server. If you don't want to install
17-
anything extra, try creating a
18-
[free SkySQL account](https://mariadb.com/products/skysql)).
17+
anything extra, try creating a free [SkySQL account](https://cloud.mariadb.com).
1918
- An SQL client tool like `mariadb`, DBeaver, or an SQL integration for
2019
your IDE.
2120

‎jdbc/part1/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ connection.close();
3838
in the **pom.xml** file).
3939
- [Apache Maven](https://maven.apache.org).
4040
- MariaDB server. If you don't want to install
41-
anything extra, try creating a
42-
[free SkySQL account](https://mariadb.com/products/skysql)).
41+
anything extra, try creating a free [SkySQL account](https://cloud.mariadb.com).
4342
- An SQL client tool like `mariadb`, DBeaver, or an SQL integration for
4443
your IDE.
4544

‎jdbc/part2/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ try (PreparedStatement statement = connection.prepareStatement("""
4040
in the **pom.xml** file).
4141
- [Apache Maven](https://maven.apache.org).
4242
- MariaDB server. If you don't want to install
43-
anything extra, try creating a
44-
[free SkySQL account](https://mariadb.com/products/skysql)).
43+
anything extra, try creating a free [SkySQL account](https://cloud.mariadb.com).
4544
- An SQL client tool like `mariadb`, DBeaver, or an SQL integration for
4645
your IDE.
4746

‎jdbc/part3/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ dataSource.close();
5050
in the **pom.xml** file).
5151
- [Apache Maven](https://maven.apache.org).
5252
- MariaDB server. If you don't want to install
53-
anything extra, try creating a
54-
[free SkySQL account](https://mariadb.com/products/skysql)).
53+
anything extra, try creating a free [SkySQL account](https://cloud.mariadb.com).
5554
- An SQL client tool like `mariadb`, DBeaver, or an SQL integration for
5655
your IDE.
5756

‎jpa-hibernate/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ try {
8888
## Requirements
8989
- Java 17 or later. Previous versions should work (update the version in the pom.xml file).
9090
Apache Maven.
91-
- MariaDB server. If you don't want to install anything extra, try creating a free SkySQL account).
91+
- MariaDB server. If you don't want to install anything extra, try creating a free [SkySQL account](https://cloud.mariadb.com).
9292
- An SQL client tool like mariadb, DBeaver, or an SQL integration for your IDE.
9393

9494
## Running the app

‎spring-boot-jooq/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,12 @@ List<ProgrammingLanguageRecord> programmingLanguages = dslContext
3838
.where(PROGRAMMING_LANGUAGE.RATING.greaterThan(3))
3939
.orderBy(PROGRAMMING_LANGUAGE.RATING.desc())
4040
.fetchInto(ProgrammingLanguageRecord.class);
41-
}
4241
```
4342

4443
## Requirements
4544
- Java 17 or later. Previous versions should work (update the version in the pom.xml file).
4645
Apache Maven.
47-
- MariaDB server. If you don't want to install anything extra, try creating a free SkySQL account).
46+
- MariaDB server. If you don't want to install anything extra, try creating a free [SkySQL account](https://cloud.mariadb.com).
4847
- An SQL client tool like mariadb, DBeaver, or an SQL integration for your IDE.
4948

5049
## Running the app

‎spring-boot-jpa/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Run CRUD operations on the database using the methods of `JpaRepository`. See th
6767
## Requirements
6868
- Java 17 or later. Previous versions should work (update the version in the **pom.xml** file).
6969
Apache Maven.
70-
- MariaDB server. If you don't want to install anything extra, try creating a free SkySQL account).
70+
- MariaDB server. If you don't want to install anything extra, try creating a free [SkySQL account](https://cloud.mariadb.com).
7171

7272
## Running the app
7373

0 commit comments

Comments
 (0)
Please sign in to comment.