рефакторинг

This commit is contained in:
2025-02-18 16:21:20 +03:00
parent 9c0ed53d52
commit 0a123988b3
163 changed files with 938 additions and 367 deletions

View File

@@ -34,6 +34,12 @@ public abstract class Database {
// UI.Print(DebugPrintLevel.Database, "соединение с базой данных " + file.getAbsolutePath());
connect();
}
public void Activate() throws Exception{
Connect();
CreateAllTables();
prepareTablesStatements();
Synchronize();
}
public void prepareTablesStatements() throws Exception {
}
public void Disconnect() throws Exception {

View File

@@ -255,4 +255,5 @@ public abstract class SQLiteDatabase extends Database {
}
//--
//https://stackoverflow.com/questions/8558099/sqlite-query-with-byte-where-clause
}

View File

@@ -1,5 +1,4 @@
package Common.Visual.Controls;
import Common.Passes.Pass;
public interface PassControl {
void setIcon(String icon_path);
void setEnabled(boolean flag);