Skip to content

Commit 83a230e

Browse files
committed
update readme
1 parent 2cb2422 commit 83a230e

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

README.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
# dynamite
1+
# Dynamite
2+
23
Dynamo query REPL
34

45
[![CircleCI](https://circleci.com/gh/joprice/dynamite/tree/master.svg?style=svg)](https://circleci.com/gh/joprice/dynamite/tree/master)
56

6-
# Installing
7+
## Installing
78

89
`brew tap joprice/tap && brew install dynamite`
910

10-
# Querying
11+
## Querying
1112

1213
A limited subset of dynamo and sql are currently supported:
1314

14-
## Select
15+
### Select
1516

1617
```sql
1718
dql> select * from playlists limit 10
@@ -25,30 +26,30 @@ dql> select * from playlists where userId = 1 and id = 2 limit 10
2526
dql> select id, name from playlists limit 1
2627
```
2728

28-
## Insert
29+
### Insert
2930

3031
```sql
3132
dql> insert into playlists (userId, id) values (1, 10)
3233
```
33-
## Update
34+
### Update
3435

3536
```sql
3637
dql> update playlists set name = '80s Party' where userId = 1 and id = 10
3738
```
3839

39-
## Delete
40+
### Delete
4041

4142
```sql
4243
dql> delete from playlists where userId = 1 and id = 10
4344
```
4445

45-
## Show tables
46+
### Show tables
4647

4748
```sql
4849
dql> show tables
4950
```
5051

51-
# Scripting
52+
## Scripting
5253

5354
Dynamite can also be used to run a single script:
5455

0 commit comments

Comments
 (0)