mooHost()        


Returns the hostname of the server which the Oracle OLAP environment is hosted.


Syntax


               mooHost()


Return Value


               STRING


Example


Public Sub mooHost()

'Shows the hostname of the server which you are connect to


Dim boo As Boolean


If Not oregistered Then:   boo = regQ:


'Check Im connected if not connect

If Not o.connected Then

   boo = o.connect

   boo = o.connected

   Else

   boo = True

End If


'Connected so execute

If boo = True Then

    Debug.Print o.mooHost()

    Else

   'Something went wrong print any error information

   Debug.Print "Unable to Connect"

   Debug.Print o.getlastmooerr

End If

End Sub