File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ The `Exqlite.Sqlite3` module usage is fairly straight forward.
104104{:ok, conn} = Exqlite.Sqlite3.open(" :memory :")
105105
106106# Create the table
107- :ok = Exqlite.Sqlite3.execute(conn, " create table test (id integer primary key, stuff text)" );
107+ :ok = Exqlite.Sqlite3.execute(conn, " create table test (id integer primary key, stuff text)" )
108108
109109# Prepare a statement
110110{:ok, statement} = Exqlite.Sqlite3.prepare(conn, " insert into test (stuff) values (?1 )" )
@@ -114,7 +114,7 @@ The `Exqlite.Sqlite3` module usage is fairly straight forward.
114114:done = Exqlite.Sqlite3.step(conn, statement)
115115
116116# Prepare a select statement
117- {:ok, statement} = Exqlite.Sqlite3.prepare(conn, " select id, stuff from test" );
117+ {:ok, statement} = Exqlite.Sqlite3.prepare(conn, " select id, stuff from test" )
118118
119119# Get the results
120120{:row, [1, " Hello world" ]} = Exqlite.Sqlite3.step(conn, statement)
You can’t perform that action at this time.
0 commit comments