You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 13, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: doc/SQLITE.md
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,15 @@ Anko provides lots of extension functions to simplify communication with SQLite
18
18
*[Updating values](#updating-values)
19
19
*[Transactions](#transactions)
20
20
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
+
21
30
## Db package
22
31
23
32
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
292
301
<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>
0 commit comments