I need someone for explain this ASP function to me.
        Posted  
        
            by Ronnie Chester Lynwood
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Ronnie Chester Lynwood
        
        
        
        Published on 2010-04-18T15:14:17Z
        Indexed on 
            2010/04/18
            15:23 UTC
        
        
        Read the original article
        Hit count: 326
        
Hello! I've got an ASP document that 5 years old. Actually I'm working with PHP but I must use ASP for a Windows Application. So I need someone to explain this function to me. Thanks anyway.
//DNS SETTINGS ARE INCLUDED ALREADY.
function Check_Is_Web_Locked()
    dim cmdDB , Ret
    OpenDatabase 
    Set cmdDB = Server.CreateObject("ADODB.Command")
            With cmdDB
                .ActiveConnection = DBCon
                .CommandText = "TICT_CHECK_WEB_STATUS"
                .CommandType = adCmdStoredProc
                .Parameters.Append .CreateParameter("RETURN_VALUE", adInteger, adParamReturnValue, 0)
                .Execute,,adExecuteNoRecords
                Ret = Trim(.Parameters("RETURN_VALUE"))
            End With
            Set cmdDB = Nothing
            CloseDatabase
            Check_Is_Web_Locked = Ret
end function
What does this functions do?
Is "TICT_CHECK_WEB_STATUS" a StoredProcedure?
If it's what are the coulumns that function looking for?
© Stack Overflow or respective owner