You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jakarta-ee/README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -95,11 +95,11 @@ Alternatively, you can use any database client compatible with MariaDB.
95
95
Execute the following SQL statements to create a user for the JakartaEE application, a database (or schema) and a table:
96
96
97
97
```sql
98
-
CREATEDATABASEjakartaee_demo;
98
+
CREATEDATABASEdemo;
99
99
CREATEUSER 'user'@'%' IDENTIFIED BY 'Password123!';
100
-
GRANTSELECT, INSERT, UPDATE, DELETEONjakartaee_demo.* TO 'user'@'%';
100
+
GRANTSELECT, INSERT, UPDATE, DELETEONdemo.* TO 'user'@'%';
101
101
102
-
USE jakartaee_demo;
102
+
USE demo;
103
103
CREATETABLEprogramming_language(
104
104
pl_id INTPRIMARY KEY AUTO_INCREMENT,
105
105
pl_name VARCHAR(50) NOT NULL UNIQUE,
@@ -134,13 +134,13 @@ Click **Finish**.
134
134
135
135
In the JDBC Connection Pool list, click on **MariaDB**, select the **Additional Properties** tab, and add the following properties using the **Add Property** button:
> If you are using [MariaDB SkySQL](https://mariadb.com/products/skysql/), enable SSL and specify the path to the CA chain file that you can download from the [SkySQL Portal](https://cloud.mariadb.com):
0 commit comments