Using SQLite from PowerShell on Windows 7x64?
- by jas
I'm having a difficult time trying to load System.Data.SQLite.dll from PowerShell in Windows 7 x64.
# x64
[void][System.Reflection.Assembly]::LoadFrom("C:\projects\PSScripts\lib\System.Data.SQLite.x64.DLL")
# x86
#[void][System.Reflection.Assembly]::LoadFrom("C:\projects\PSScripts\lib\System.Data.SQLite.DLL")
$conn = New-Object -TypeName…