Database abstraction using Julia

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

+8
source share
1 answer

The JuliaDB collection lists various methods (for example, julia libraries) for connecting to databases, most of which must support the above functions.

See https://github.com/JuliaComputing/JuliaDB.jl

+1
source

All Articles