Is there a tool that will create Java or .NET classes from a db4o database file?

I have a db4o database file. Is there a tool that will generate Java or .NET classes (source) from this database?

+3
source share
1 answer

No, that I know.

But it should not be hard to write. You can use ObjectContainer.Ext (). KnownClasses () method.

+2
source

Source: https://habr.com/ru/post/1749608/


All Articles