Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit 01ae776

Browse files
connorlayyanex
authored andcommitted
Update SQLITE.md to include Gradle dependency (#204)
1 parent 701bb6d commit 01ae776

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

doc/SQLITE.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ Anko provides lots of extension functions to simplify communication with SQLite
1818
* [Updating values](#updating-values)
1919
* [Transactions](#transactions)
2020

21+
22+
## Gradle installation
23+
24+
Add the following to your `build.gradle`:
25+
26+
```groovy
27+
compile 'org.jetbrains.anko:anko-sqlite:0.8.3'
28+
```
29+
2130
## Db package
2231

2332
All database-related tools are in the `org.jetbrains.anko.db` package. You could probably want to import all children at once:
@@ -292,4 +301,4 @@ Transaction will be marked marked as successful if no exception was thrown insid
292301
<i>If you want to abort a transaction for some reason, just throw <code>TransactionAbortException</code>. You don't need to handle this exception by yourself in this case.</i>
293302
</td>
294303
</tr>
295-
</table>
304+
</table>

0 commit comments

Comments
 (0)