Minimal changes

This commit is contained in:
Silas Oettinghaus
2026-02-05 15:50:49 +01:00
parent 3d47813f1e
commit bc8ebc044f
6 changed files with 26 additions and 21 deletions

View File

@@ -21,12 +21,12 @@ classdef DBHandler < handle
% obj = DBHandler('pathToDB', 'path/to/database.db');
arguments
options.dataBase = ""; % Default value for pathToDB if not provided
options.dataBase = "labor_highspeed"; % Default value for pathToDB if not provided
options.type = "mysql";
options.server = "";
options.server = "134.245.243.254";
options.port = 3306;
options.user = "";
options.password = "";
options.user = "silas";
options.password = "silas";
end