Restituisce le opzioni di connessione per un database. Questo metodo si utilizza per richiamare le opzioni di connessione Oracle per il database.
Perl
$database->GetConnectOptions();
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";