On Mon, 2005-06-06 at 10:48 +0200, Honza Pazdziora wrote: > Please let me know if I should do some more tests for other rare > types of 10g. If you give me a hint how 10g-specific tests should be > done in t/*.t, I can provide some additions to the test suite as > well. >
There are a number of tests that test the oracle version already in t/. Look at: 25plsql.t: my $ora_server_version = $dbh->func("ora_server_version"); 25plsql.t: if DBD::Oracle::ORA_OCI() < 9.0 || $ora_server_version < 9.8; and nchar_test_lib.pl: my $ora_server_version = join ".", @{$dbh->func("ora_server_version")||[]}; Lincoln