Are there any good CachedRowSet implementations other than the proprietary Sun one?

后端 未结 3 845
Happy的楠姐
Happy的楠姐 2020-12-15 23:17

I am investigating using javax.sql.rowset.CachedRowSet in part of my application, however I can only find information on using the proprietary sun implementation com.sun.row

3条回答
  •  轮回少年
    2020-12-15 23:46

    Oracle Implementation Is Open-Source

    The question incorrectly states that the Oracle RowSet implementation is proprietary. It is not; it already is open-source.

    The source code is released as free software under the GNU General Public Library (GPL) version 2 license with "Classpath" exception. Read the source code to see the license.

    So they cannot be withdrawn. You and others are free to maintain or modify these classes provided you follow the terms of the GPL.

    JDBC Driver Implementation

    Also, some JDBC drivers provide an implementation of RowSet. I do not know if any are open-source, but that would be one avenue to explore.

提交回复
热议问题