Implementing lib

This commit is contained in:
Luca Frosini 2021-03-18 10:33:46 +01:00
parent ac75159b52
commit e0736193e6
2 changed files with 1 additions and 2 deletions

View File

@ -36,7 +36,6 @@ public class RecordToDBConnection {
this.username = configuration.getProperty(typeName+USERNAME_SUFFIX); this.username = configuration.getProperty(typeName+USERNAME_SUFFIX);
this.password = configuration.getProperty(typeName+PASSWORD_SUFFIX); this.password = configuration.getProperty(typeName+PASSWORD_SUFFIX);
} }
public Connection getConnection() throws Exception { public Connection getConnection() throws Exception {

View File

@ -8,7 +8,7 @@ import org.gcube.documentstore.records.Record;
public class RecordToDBFields { public class RecordToDBFields {
protected static String getKey(String fieldName) { public static String getKey(String fieldName) {
StringBuffer stringBuffer = new StringBuffer(); StringBuffer stringBuffer = new StringBuffer();
int lenght = fieldName.length(); int lenght = fieldName.length();
boolean lastLowerCase = true; boolean lastLowerCase = true;