Skip to content

Latest commit

 

History

History
46 lines (39 loc) · 1.23 KB

README.md

File metadata and controls

46 lines (39 loc) · 1.23 KB

CoolREADME file

Stargazers License

Commit Message Template:

[Version Number] Summary of the changes made

Example:

1.009 Merge and small code improvements

MlStartTasks

StartDate:14.01.2024

Technologies Used

  • 🛢️ DBMS: Microsoft SQL Server
  • 🖥️ Framework: WPF app targeting .NET 8.0, including net8.0-windows, and utilizing WPF components.
  • 🚀 Project Entry Points:
    • For the client: Client\App.Xaml.cs.Main
  • 📜 Logs Directory: Client\bin\Debug\logs\
  • ⚙️ Configuration File: Client\bin\Debug\config.xml

Database Structure

DataBase name: MLstartDataBase

Table Userss

CREATE TABLE IF NOT EXISTS Userss (
    Personid INT PRIMARY KEY IDENTITY,
    Login VARCHAR(255) NOT NULL,
    PassWord VARCHAR(255) NOT NULL
);

Table EventLog

CREATE TABLE IF NOT EXISTS EventLog (
    UserName VARCHAR(255) NULL,
    FileName VARCHAR(255) NULL,
    FramePath NVARCHAR(MAX) NULL,
    MetaData NVARCHAR(MAX) NULL
);