#Temporary table,#Dynamic Query

时间:2015-08-21 11:35:23

标签: sql dynamicquery

这是我的疑问:

Msg 137, Level 15, State 2, Line 4
Must declare the scalar variable "@db_name".
Msg 102, Level 15, State 1, Line 5
Incorrect syntax near ')'.

在执行上述操作后,它给出了以下错误:

Private Sub cmbOwner2_Click()
If Me.cmbOwner2.Value Then
Me.txtOwner2.Enabled = True
Else
Me.txtOwner2.Enabled = False
End If
End Sub

但正如您在上面所看到的那样,变量已经被声明了!请帮忙!

1 个答案:

答案 0 :(得分:1)

必须在正在执行的脚本中声明变量。您已在@cmd_ltbEnvPriority中创建了另一个脚本,然后执行该脚本。它不知道调用它的外部脚本中的变量。