This commit is contained in:
2026-03-31 10:20:27 +07:00
parent 18bf19a090
commit 209b68c3f5
12 changed files with 1237 additions and 196 deletions

View File

@@ -5,8 +5,8 @@
# SQL Server Connection Info
$ServerName = "172.20.235.176"
$Username = "sa"
$Password = "robotics@2020"
$SqlScriptPath = ".\setup.sql"
$Password = "robotics@2022"
$SqlScriptPath = Join-Path $PSScriptRoot "setup.sql"
Write-Host "========================================" -ForegroundColor Cyan
Write-Host "AccManager Database Setup" -ForegroundColor Cyan

View File

@@ -14,8 +14,10 @@ ELSE
BEGIN
PRINT 'Database AccManager already exists.';
END
GO
USE AccManager;
GO
-- ===========================================
-- 1. CREATE USERS TABLE

View File

@@ -0,0 +1 @@
Sqlcmd: Error: Microsoft ODBC Driver 17 for SQL Server : Login failed for user 'sa'..