File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/main/java/org/utplsql/cli Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,10 @@ class RunCommandChecker {
18
18
*/
19
19
static void checkOracleI18nExists (Connection con ) throws SQLException {
20
20
21
- String oracleDatabaseVersion = DBHelper .getOracleDatabaseVersion (con );
22
- if ( oracleDatabaseVersion .startsWith ("11." ) && !OracleLibraryChecker .checkOrai18nExists () )
21
+ if ( !OracleLibraryChecker .checkOrai18nExists () )
23
22
{
24
- System .out .println ("Warning : Could not find Oracle i18n driver in classpath. Depending on the database charset " +
25
- "utPLSQL-cli might not run properly. It is recommended you download " +
23
+ System .out .println ("WARNING : Could not find Oracle i18n driver in classpath. Depending on the database charset " +
24
+ "utPLSQL-cli, especially code coverage, might not run properly. It is recommended you download " +
26
25
"the i18n driver from the Oracle website and copy it to the 'lib' folder of your utPLSQL-cli installation." );
27
26
System .out .println ("Download from http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html" );
28
27
}
You can’t perform that action at this time.
0 commit comments