Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit a4e7fd5

Browse files
committed
try out the codesponsor tag
1 parent 99c1ab1 commit a4e7fd5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Sqlitex
88

99
An Elixir wrapper around [esqlite](https://github.com/mmzeeman/esqlite). The main aim here is to provide convenient usage of sqlite databases.
1010

11+
<a href="https://app.codesponsor.io/link/RJLdpYrCcEHqZEL5w1U2rFtj/mmmries/sqlitex"><img src="https://app.codesponsor.io/embed/RJLdpYrCcEHqZEL5w1U2rFtj/mmmries/sqlitex.svg" style="width: 888px; height: 68px;" alt="Sponsor" /></a>
12+
1113
Updated to 1.0
1214
==============
1315

@@ -37,8 +39,8 @@ Pass the `bind` option to bind parameterized queries.
3739
```elixir
3840
Sqlitex.with_db('test/fixtures/golfscores.sqlite3', fn(db) ->
3941
Sqlitex.query(
40-
db,
41-
"INSERT INTO players (name, created_at, updated_at) VALUES ($1, $2, $3, $4)",
42+
db,
43+
"INSERT INTO players (name, created_at, updated_at) VALUES ($1, $2, $3, $4)",
4244
bind: ['Mikey', '2012-10-14 05:46:28.318107', '2013-09-06 22:29:36.610911'])
4345
end)
4446
# => [[id: 1, name: "Mikey", created_at: {{2012,10,14},{05,46,28}}, updated_at: {{2013,09,06},{22,29,36}}, type: nil]]

0 commit comments

Comments
 (0)