corretta stringa di connessione a SqlServer senza encrypt
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good
This commit is contained in:
@@ -531,7 +531,7 @@ public class SQLServerDBSchemaManager {
|
||||
}
|
||||
|
||||
private String getConnectionString(String host) {
|
||||
return String.format("jdbc:sqlserver://%s;applicationName=%s", host, "EMS Connection");
|
||||
return String.format("jdbc:sqlserver://%s;applicationName=%s;encrypt=false", host, "EMS Connection");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ public class MenuStaticCreator {
|
||||
public static void main(String[] args) throws Exception {
|
||||
System.out.println("Running the Menu UPDATE");
|
||||
|
||||
String connectionString = String.format("jdbc:sqlserver://%s;databaseName=%s;applicationName=%s", "SERVERDB2019", "studioml", "IntelliJ Connection");
|
||||
String connectionString = String.format("jdbc:sqlserver://%s;databaseName=%s;applicationName=%s;encrypt=false", "SERVERDB2019", "studioml", "IntelliJ Connection");
|
||||
String username = "sa";
|
||||
String password = "sa";
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user