Questions tagged «jdbc»

9
无法通过Tomcat或外部的JDBC连接器连接到mysql
我已经安装了一个普通的mysql 5.5安装程序,虽然可以通过mysql命令连接到mysql服务,并且该服务似乎正在运行,但是我无法通过spring + tomcat或从外部jdbc连接器连接到它。 我正在使用以下网址: jdbc:mysql://myserver.com:myport/mydb 使用正确的用户名/密码,但我收到以下消息: server.com: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. the driver has not received any packets from the server. 和tomcat抛出: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. …
17 mysql  tomcat  jdbc 

1
classes12.jar,ojdbc14.jar,ojdbc5.jar和ojdbc6.jar之间的区别
我们计划将应用程序服务器升级到新版本的JRun,并将其从Java 1.4升级到Java 1.6。作为其一部分,我们一直在测试软件堆栈的各个部分,并意识到也需要查看我们的Oracle JDBC驱动程序。 查看Oracle网站和文档,不同版本似乎主要针对各种版本的JDBC API,这些版本往往与它们引入的JVM版本相对应。Java(通常)是向后兼容的,坚持使用ojdbc14.jar可能最有意义,但我希望在那里的某个人可以使事情变得更好。 文档专门列出了这样的图表,这让我想知道Java 6是否正式支持ojdbc14.jar。 classes12.jar - for Java 1.2 and 1.3 ojdbc14.jar - for Java 1.4 and 1.5 ojdbc5.jar - for Java 1.5 ojdbc6.jar - for Java 1.6 从系统角度看,在混合和匹配驱动程序和虚拟机时,我应该注意些什么?
10 oracle  java  jdbc  jrun 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.