关于Sql Server 2000 dts包中ActiveX脚本任务的问题
这行代码的作用是什么?
Set Pkg = DTSGlobalVariables.Parent
在以下 ActiveX 脚本任务中:
Function Main()
myfilename=inputbox( "Please enter the filename (ex. 2010Nov):")
Set Pkg = DTSGlobalVariables.Parent
DTSGlobalVariables("filename").Value=myfilename
Main = DTSTaskExecResult_Success
End Function
在 Sql Server dts 包中,
What does this line of code do
Set Pkg = DTSGlobalVariables.Parent
In the following ActiveX Script Task:
Function Main()
myfilename=inputbox( "Please enter the filename (ex. 2010Nov):")
Set Pkg = DTSGlobalVariables.Parent
DTSGlobalVariables("filename").Value=myfilename
Main = DTSTaskExecResult_Success
End Function
in a Sql Server dts package?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DTSGlobalVariables.Parent - 包对象本身。
该脚本将其分配给变量 Pkg,但不使用它。
DTSGlobalVariables.Parent - the package object itself.
The script assigns it to your variable Pkg, but doesn't use it.