简体   繁体   English

Java:最佳的jdbc支持?

[英]Java : Best jdbc support?

A few years ago, JDBC was a little funny in some versions of sqlserver. 几年前,在某些版本的sqlserver中,JDBC有点有趣。 Is there a "best" jdbc driver out there ? 那里有“最好的”jdbc驱动程序吗? Like, is there a database [suspecting hsql or mysql] that is optimally suited for 100% java development with rdbms ? 例如,是否有一个数据库[怀疑hsql或mysql]最适合使用rdbms进行100%Java开发?

Is there a database that is optimally suited for 100% java development with rdbms ? 是否有一个数据库最适合使用rdbms 100%开发Java?

Nope. 不。

The whole point of a driver is to make an arbitrary database (the one the driver was written for) usable via JDBC. 驾驶者的整是使任意的数据库(一个司机书面)经由JDBC可用。

Oracle has some special tuning for java. Oracle 对java一些特殊的调整。 I am not sure if that translate to some special facilities for java. 我不确定是否转换为java的一些特殊功能。 My experience is that first we pick a database and a suitable driver. 我的经验是,首先我们选择一个数据库和一个合适的驱动程序。 Then we live with whatever the driver offers. 然后我们和司机提供的东西一起生活。

I used jtds to connect to MS-SQL without any problems. 我使用jtds连接到MS-SQL没有任何问题。 (well, my programs just query and update relatively simple structures) (好吧,我的程序只是查询和更新相对简单的结构)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM