当前位置: 技术问答>java相关
关于jdbc for sqlserver问题!
来源: 互联网 发布时间:2017-04-07
本文导语: 我在jdbc for sqlserver的帮助里看到NOTE: You must include the javax.sql.* and javax.naming.* classes to create and use SQL Server 2000 Driver for JDBC data sources. The SQL Server 2000 Driver for JDBC provides all the necessary JAR files that...
我在jdbc for sqlserver的帮助里看到NOTE: You must include the javax.sql.* and javax.naming.* classes to create and use SQL Server 2000 Driver for JDBC data sources. The SQL Server 2000 Driver for JDBC provides all the necessary JAR files that contain the required classes and interfaces. 我在jsp里import javax.sql.* 和javax.naming.* 时说找不到javax.naming.* ,我查api时发现j2se里没javax.naming.* ,后来我把javax.sql.* 和javax.naming.* 都去掉,我的jsp仍然能进行数据操作,为什么???
|
注意这句话:for JDBC data sources
只有当你使用驱动提供的数据源的时候,才需要这两个包。
只有当你使用驱动提供的数据源的时候,才需要这两个包。
|
javax.sql.* 和javax.naming.*
是用来配置连接池的
是用来配置连接池的
|
楼上的说了