可以用,但不是那样用
    '更新As_web_config表
    '增加字段SMTPServer,类型varchar(50)
    '增加字段SystemEmail,类型varchar(50)
    '增加字段emailname,类型varchar(50)
    '增加字段emailpass,类型varchar(50)
'-------------------------------------------------------------------------------------        
    Call Execute("Alter Table As_web_config Add emailname varchar(50) NULL")    
    Call Execute("Alter Table As_web_config Add emailpass varchar(50) NULL")         
    If strErrMsg<>"" Then
        FoundErr = True 
        Echo  "<font color=red>As_web_config 更新失败</font>:<BR/>" & strErrMsg  &"<BR/><BR/>" 
    Else
        Echo  "<font color=green>As_web_config 更新成功</font><BR/><BR/>" 
    End If
    strErrMsg=""