Public/Invoke-PSDuckDb.ps1
function Invoke-PSDuckDB { <# .EXAMPLE CREATE TABLE Cities AS SELECT * FROM 'data/otherData/cities.csv'; PIVOT Cities ON Year USING sum(Population); #> [CmdletBinding()] [Alias('psduckdb')] param( [string]$Command ) $conn = [DuckDB.NET.Data.DuckDBConnection]::new("Data Source=:memory:") $conn.Open() $duckCommand = $conn.CreateCommand() if (![string]::IsNullOrEmpty($Command)) { $duckCommand.CommandText = $Command try { $reader = $duckCommand.ExecuteReader() Out-DuckData $reader } catch { Write-Host $_.Exception.Message -ForegroundColor Red } finally { $conn.Close() } } else { $ExitOn = @("exit", "quit", "bye") Write-Host "Welcome to PSDuckDB! $(Get-Date)" Write-Host 'Connected to ' -NoNewline Write-Host 'a transient in-memory database' -ForegroundColor Red while ($true) { $targetCommand = Read-Host "PSDuckDB" if ($targetCommand -in $ExitOn) { break } try { $duckCommand.CommandText = $targetCommand $reader = $duckCommand.ExecuteReader() Out-DuckData $reader | Format-Table } catch { Write-Host $_.Exception.Message -ForegroundColor Red } } $conn.Close() } } function Out-DuckData { param($reader) while ($reader.read()) { # Create a hashtable for the current row $rowObject = @{} For ($columnIndex = 0; $columnIndex -lt $reader.FieldCount; $columnIndex++ ) { # Add field name and value as key-value pair $rowObject[$reader.GetName($columnIndex)] = $reader.GetValue($columnIndex) } # Convert the hashtable to a custom object and add it to the array [PSCustomObject]$rowObject } } |