DBConnection.handle_execute
You're seeing just the callback
handle_execute
, go back to DBConnection module for more information.
Specs
handle_execute(query(), params(), opts :: Keyword.t(), state :: any()) :: {:ok, query(), result(), new_state :: any()} | {:error | :disconnect, Exception.t(), new_state :: any()}
Execute a query prepared by handle_prepare/3
. Return
{:ok, query, result, state}
to return altered query query
and result
result
and continue, {:error, exception, state}
to return an error and
continue or {:disconnect, exception, state}
to return an error and
disconnect.
This callback is called in the client process.