Description
Returns
the connect options for a database. This method is for retrieving Oracle connect
options for the database.
Remarque : This method
is for Perl only. It is not available for VBScript.
Syntaxe
Perl
$database->GetConnectOptions();
- Identificateur
- Description
- base_de_données
- Objet base de données.
- Return value
- A String containing the connect options for the database.
Exemple
Perl
# Get the database
# ...
# Get the connect options for the db
$DB->SetConnectOptions("CLIENT_VER=8.0;SERVER_VER=8.1;
HOST=MyOracleServerHost;SID=ORCL;LOB_TYPE=LONG");
# Then get the connect options
$CO = $DB->GetConnectOptions();
print $CO, "\n";