erlang-ports

Messages received from port in erlang-sqlite3

Erlang-sqlite3 uses a port driver to connect with the SQLite database, and receives messages from the port: wait_result(Port) -> receive {Port, Reply} -> % io:format("Reply: ~p~n", [Reply]), Reply; {error, Reason} -> io:format("Error: ~p~n", [Reason]), {error, Reason}; _Else -> io:format("Else...