DataSet class in Java?

前端 未结 9 1995
孤独总比滥情好
孤独总比滥情好 2020-12-05 15:45

Does anyone know if there is a DataSet class in Java like there is in .Net? I am familiar with EJB3 and the \"java way\" of doing data. However, I really still miss the se

相关标签:
9条回答
  • 2020-12-05 16:03

    ResultSet like rexem commented above. Would you like to elaborate on what you consider the Java way of doing data and how it differs from the C# way?

    0 讨论(0)
  • 2020-12-05 16:04

    you may want to look into this open-source library:

    https://www.developerfusion.com/project/20506/casperdatasets/

    Its easy to use (a lot like using the sql resultset), and its all in-memory. it also supports complex queries and indexes on your data.

    0 讨论(0)
  • 2020-12-05 16:13

    I know what you mean by the "dataset way" maybe you can find something similar, however are you sure you want to go that way? Java has many options but if you want something more cooked, why don't explore hibernate, it's the very popular in the industry and will give you more power that the one you are asking for.

    0 讨论(0)
提交回复
热议问题