Many languages provide database abstraction for storing data (objects) in relational databases (typically through relational object mapping (ORM)).
I know that Julia is not a “regular” object oriented language (see julia: OOP or not )
But I wonder if there is a library with the following functions?
Connect to the database through the database URI, for example, "dialect+driver://username: password@host :port/database" (see Python SQLAlchemy http://docs.sqlalchemy.org/en/latest/core/engines .html )
Store objects (actually instances of a composite type) in the database
Retrieve objects from the database
source share