ExDocDash v0.3.1 ExDocDash.SQLite
Execute an SQL query using the sqlite3 command line utility.
Summary
Functions
Executes given query onto a database
Types
Functions
Specs
exec!(String.t, query) :: query_result
Executes given query onto a database.
{:ok, results} = ExDocDash.SQLite.exec("my.db", "SELECT * from something")
IO.format("Results: #{results}")