用JDBC连接数据库(含外文出处)
用JDBC连接数据库(含外文出处)(中文3000字,英文2000字)
据估算,将近一半的软件开发都要涉及客户(机)/服务器方面的操作。Java 为自己保证的一项出色能力就是构建与平台无关的客户机/服务器数据库应用。在Java 1.1 中,这一保证通过Java 数据库连接(JDBC)实现了。
数据库最主要的一个问题就是各家公司之间的规格大战。确实存在一种“标准”数据库语言,即“结构查询语言”(SQL-92),但通常都必须确切知道自己要和哪家数据库公司打交道,否则极易出问题,尽管存在所谓的“标准”。JDBC 是面向“与平台无关”设计的,所以在编程的时候不必关心自己要使用的是什么数据库产品。然而,从JDBC 里仍有可能发出对某些数据库公司专用功能的调用,所以仍然不可任性妄为。
Java Database Connectivity (JDBC)
It has been estimated that half of all software development involves client/server operations.A great promise of Java has been the ability to build platform-independent client/server database applications. This has come to fruition with Java DataBase Connectivity (JDBC). [资料来源:Doc163.com]
One of the major problems with databases has been the feature wars between the database companies. There is a “standard” database language, Structured Query Language (SQL-92),
but you must usually know which database vendor you’re working with despite the standard. [资料来源:www.doc163.com]