Java中的OracleCachedRowSet和RowSet有什么区别(两者的优点/缺点)?
最佳答案
OracleCachedRowSet
是RowSet
和CachedRowSet
接口的Oracle JDBC驱动程序实现。除非有非常有说服力的理由使用特定于Oracle的类,否则您应该坚持只使用RowSet
或CachedRowSet
,例如想要使用OracleCachedRowSet
而不是RowSet
或CachedRowSet
。
请注意,无论您的源代码引用的是OracleCachedRowSet
还是OracleCachedRowSet
,您的程序都将在运行时使用RowSet
。