Current section

Files

Jump to
ex_arrow lib ex_arrow adbc database_behaviour.ex
Raw

lib/ex_arrow/adbc/database_behaviour.ex

defmodule ExArrow.ADBC.DatabaseBehaviour do
@moduledoc """
Behaviour for ADBC Database implementations. Used with Mox in tests.
"""
@callback open(driver_path_or_opts :: String.t() | keyword()) ::
{:ok, ExArrow.ADBC.Database.t()} | {:error, term()}
end