Compare commits

...

2 Commits

Author SHA1 Message Date
aa6b203882
Changed the version to 2.0.1 2021-11-21 02:53:18 +01:00
2538d0958e
Made MySQLConnection#con protected 2021-11-21 02:51:23 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
<groupId>de.gnmyt</groupId> <groupId>de.gnmyt</groupId>
<artifactId>SQLToolkit</artifactId> <artifactId>SQLToolkit</artifactId>
<version>2.0</version> <version>2.0.1</version>
<properties> <properties>
<maven.compiler.source>8</maven.compiler.source> <maven.compiler.source>8</maven.compiler.source>

View File

@ -26,7 +26,7 @@ public class MySQLConnection {
private final String password; private final String password;
private final String database; private final String database;
private Connection con; protected Connection con;
/** /**
* Basic constructor for the connection * Basic constructor for the connection