DBAPI.jl

A new database interface proposal
Popularity
12 Stars
Updated Last
1 Year Ago
Started In
June 2015

DBAPI

Build Status Build status codecov.io

This module defines an abstract interface for database drivers in Julia.

This module contains abstract types, abstract required functions (which throw a NotImplementedError by default), and abstract optional functions (which throw a NotSupportedError by default).

Database drivers should import this module, subtype its types, and create methods for its functions which implement the signatures and behavioural specifications contained within this module.

This interface is largely inspired by Python's DB API 2.0, which is in the public domain: PEP0249.

Null Handling

All values of type T that could be null should be returned as Nullable{T}.