Chili.Opf3 Send comments on this topic.
OracleStorage Constructor(String,String,String)
See Also 
Chili.Opf3.Storages.Oracle Namespace > OracleStorage Class > OracleStorage Constructor : OracleStorage Constructor(String,String,String)




user
Specifies the name of the user that connects to the storage.
password
Specifies the password of the user that connects to the storage.
host
Specifies the database's hostname (Name of the machine where the database is installed).
Creates a new instance of the OracleStorage Class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal user As String, _
   ByVal password As String, _
   ByVal host As String _
)
Visual Basic (Usage)Copy Code
Dim user As String
Dim password As String
Dim host As String
 
Dim instance As OracleStorage(user, password, host)
C# 
public OracleStorage( 
   string user,
   string password,
   string host
)
Managed Extensions for C++ 
public: OracleStorage( 
   string* user,
   string* password,
   string* host
)
C++/CLI 
public:
OracleStorage( 
   String^ user,
   String^ password,
   String^ host
)

Parameters

user
Specifies the name of the user that connects to the storage.
password
Specifies the password of the user that connects to the storage.
host
Specifies the database's hostname (Name of the machine where the database is installed).

Exceptions

ExceptionDescription
ArgumentNullExceptionUser is null, password is null or host is null.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also