A Microsoft platform for building enterprise-level data integration and data transformations solutions.
Hi @Ishika Raiyani ,
This error is usually caused by architecture mismatch or missing native dependency.
To Fix follow bellow steps,
Install the official System.Data.SQLite bundle (not just DLL)
Ensure both files are available:
System.Data.SQLite.dll
SQLite.Interop.dll (required)
Match runtime:
SSISDB/SQL Agent → 64-bit
Visual Studio → set Run64BitRuntime = True (or install x86 as well)
Copy DLLs to:
C:\Program Files\Microsoft SQL Server<version>\DTS\Binn\
Install VC++ Redistributables (x86 & x64)
Root Cause
Missing SQLite.Interop.dll or 32/64-bit mismatch causes the E_POINTER error.
Thanks,
Akhil.