我正在尝试连接到本地oracle数据库,但我收到这个神秘的错误消息:
指定的Oracle URL无效:OracleDataSource.makeURL.
指定的Oracle URL无效:OracleDataSource.makeURL.
我很确定这是由于我传递的数据库连接参数出错,但实际上,这个错误消息对我没有任何帮助.任何关于我做错的提示都将不胜感激.
仅供参考:用于连接的代码如下所示,除了硬编码字符串,这是我们的生产环境中使用的并且在那里工作.
OracleDataSource dataSource = new OracleDataSource(); dataSource.setServerName("localhost"); dataSource.setUser(userName); dataSource.setPassword(password); dataSource.setDatabaseName("orcl"); return dataSource.getConnection();