File tree 1 file changed +7
-16
lines changed
1 file changed +7
-16
lines changed Original file line number Diff line number Diff line change @@ -17,32 +17,23 @@ Change `Service` constructor to use a `MariaDbPoolDataSource` and run the app ag
17
17
- An SQL client tool like ` mariadb ` , DBeaver, or an SQL integration for
18
18
your IDE.
19
19
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
28
21
22
+ See the instructions [ here] ( ../../README.md ) .
29
23
30
- USE demo;
31
- CREATE TABLE programming_language (
32
- name VARCHAR (50 ) NOT NULL UNIQUE,
33
- rating INT
34
- );
24
+ Insert some data:
35
25
36
- INSERT INTO
37
- programming_language(name, rating)
26
+ ``` sql
27
+ INSERT INTO demo . programming_language (name, rating)
38
28
VALUES
39
29
(' Java' , 10 ),
40
30
(' C++' , 9 );
41
31
```
42
32
33
+ ## Running the app
43
34
Run the following from the command line:
44
35
45
- ```
36
+ ``` Shell
46
37
git clone
[email protected] :mariadb-developers/java-quickstart.git
47
38
cd java-quickstart/jdbc/mariadb-pool/
48
39
mvn package
You can’t perform that action at this time.
0 commit comments