Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
formation.java
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ferret Renaud
formation.java
Wiki
Exo04 jdbc
2] MySQL
Changes
Page history
New page
Templates
Clone repository
Update 2] MySQL
authored
1 year ago
by
Ferret Renaud
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Exo04-JDBC/2]-MySQL.md
+11
-1
11 additions, 1 deletion
Exo04-JDBC/2]-MySQL.md
with
11 additions
and
1 deletion
Exo04-JDBC/2]-MySQL.md
View page @
3dc726fb
...
@@ -98,14 +98,24 @@ Indiquez dans votre fichier **pom.xml** la dépendance vers le driver Java via l
...
@@ -98,14 +98,24 @@ Indiquez dans votre fichier **pom.xml** la dépendance vers le driver Java via l
<project>
<project>
...
...
<dependencies>
<dependencies>
<!-- Pour la base MySQL -->
<!-- Pour la base MySQL 8.0.2x -->
<dependency>
<dependency>
<groupId>
mysql
</groupId>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<artifactId>
mysql-connector-java
</artifactId>
<!-- Vous pouvez changer le numero de version -->
<!-- Vous pouvez changer le numero de version -->
<version>
8.0.27
</version>
<version>
8.0.27
</version>
</dependency>
</dependency>
<!-- Pour la base MySQL 8.0.3x -->
<dependency>
<groupId>
com.mysql
</groupId>
<artifactId>
mysql-connector-j
</artifactId>
<version>
8.0.33
</version>
</dependency>
</dependencies>
</dependencies>
</project>
</project>
```
```
...
...
This diff is collapsed.
Click to expand it.