Skip to content

Commit 0376d49

Browse files
committed
Update pool example readme
1 parent 7fc2448 commit 0376d49

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

jdbc/mariadb-pool/README.md

+7-16
Original file line numberDiff line numberDiff line change
@@ -17,32 +17,23 @@ Change `Service` constructor to use a `MariaDbPoolDataSource` and run the app ag
1717
- An SQL client tool like `mariadb`, DBeaver, or an SQL integration for
1818
your IDE.
1919

20-
## Running the app
21-
22-
Prepare the database:
23-
24-
```sql
25-
CREATE DATABASE demo;
26-
CREATE USER 'user'@'%';
27-
GRANT ALL ON demo.* TO 'user'@'%' IDENTIFIED BY 'password';
20+
## Preparing the database
2821

22+
See the instructions [here](../../README.md).
2923

30-
USE demo;
31-
CREATE TABLE programming_language(
32-
name VARCHAR(50) NOT NULL UNIQUE,
33-
rating INT
34-
);
24+
Insert some data:
3525

36-
INSERT INTO
37-
programming_language(name, rating)
26+
```sql
27+
INSERT INTO demo.programming_language(name, rating)
3828
VALUES
3929
('Java', 10),
4030
('C++', 9);
4131
```
4232

33+
## Running the app
4334
Run the following from the command line:
4435

45-
```
36+
```Shell
4637
git clone [email protected]:mariadb-developers/java-quickstart.git
4738
cd java-quickstart/jdbc/mariadb-pool/
4839
mvn package

0 commit comments

Comments
 (0)