Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
alicebob committed May 28, 2018
1 parent 081a745 commit f9ff393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ Things SQLittle can do:
- hides all SQLite low level storage details
- DESC indexes are handled automatically
- Collate functions are used automatically
- indexes with expression (either in columns or as a `WHERE`) are (partially) supported
- Scan() to most Go datatypes, including `time.Time`
```

Things SQLittle should do:

```
- the table and index definitions SQL parser is not finished enough
- add a helper to find indexes. That would be especially useful for the `sqlite_autoindex_...` indexes
- optimize loading when all requested columns are available in the index
- expose the locking so you can do bigger read transactions
Expand All @@ -56,7 +56,6 @@ Things SQLittle can not do:
- no joins
- WAL files are not supported
- indexes are used for sorting, but there is no on-the-fly sorting
- indexes with expression (either in columns or as a `WHERE`) are not supported
```

## Locks
Expand Down
3 changes: 1 addition & 2 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ Things SQLittle can do:
- hides all SQLite low level storage details
- DESC indexes are handled automatically
- Collate functions are used automatically
- indexes with expression (either in columns or as a `WHERE`) are (partially) supported
- Scan() to most Go datatypes, including `time.Time`
Things SQLittle should do:
- the table and index definitions SQL parser is not finished enough
- add a helper to find indexes. That would be especially useful for the `sqlite_autoindex_...` indexes
- optimize loading when all requested columns are available in the index
- expose the locking so you can do bigger read transactions
Expand All @@ -60,7 +60,6 @@ Things SQLittle can not do:
- no joins
- WAL files are not supported
- indexes are used for sorting, but there is no on-the-fly sorting
- indexes with expression (either in columns or as a `WHERE`) are not supported
Locks
Expand Down

0 comments on commit f9ff393

Please sign in to comment.