Method | Description | |
---|---|---|
Instance ( string instance ) : |
Specifies the instance (database name) to use. This can be the short name or the fully qualified name (Oracle service name).
|
|
OracleConnectionStringBuilder ( ) | ||
OtherOptions ( string otherOptions ) : |
Specifies, as a string, other Oracle options to pass to the connection.
|
|
Password ( string password ) : |
Specifies the password of the user account accessing the database.
|
|
Pooling ( bool pooling ) : |
Enable or disable pooling connections for this data configuration.
|
|
Port ( int port ) : |
Optional. Ports the specified port the oracle database is running on. This defaults to 1521.
|
|
Server ( string server ) : |
Specifies the server to connect. This can be either the DNS name of the server or the IP (as a string).
|
|
StatementCacheSize ( int cacheSize ) : |
Specifies the SQL statement cache size to use for this connection.
|
|
Username ( string username ) : |
Specifies the name of the user account accessing the database.
|
Method | Description | |
---|---|---|
Create ( ) : string |
public Instance ( string instance ) : |
||
instance | string | The instance. |
return |
public OtherOptions ( string otherOptions ) : |
||
otherOptions | string | The other options. |
return |
public Password ( string password ) : |
||
password | string | The password. |
return |
public Pooling ( bool pooling ) : |
||
pooling | bool | if set to |
return |
public Port ( int port ) : |
||
port | int | The port. |
return |
public Server ( string server ) : |
||
server | string | The server. |
return |
public StatementCacheSize ( int cacheSize ) : |
||
cacheSize | int | Size of the cache. |
return |
public Username ( string username ) : |
||
username | string | The username. |
return |