Tuesday, September 16, 2008

"Option Strict On disallows late binding" in SSIS Script task

"Option Strict" is a compiler option that's there to help you from introducing logic errors.
We can set this option to off at the beggining on the script task to remove such error.
for example,

Option Strict Off
Imports System
Imports System.Data
Imports System.Math
Imports Microsoft.SqlServer.Dts.Runtime