PS-Commands/Scripts/Get-SQLiteTable.ps1
2023-08-17 13:45:36 +03:00

4 lines
No EOL
156 B
PowerShell

$path = "$home\Documents\Get-Service.db"
$TableName = "Service"
Import-Module MySQLite
Invoke-MySQLiteQuery -Path $path -Query "SELECT * FROM $TableName"