Skip to content

Commit 7b2481a

Browse files
committed
Merge branch 'master' of https://github.com/SQLSimple/SQLSample
2 parents 8dd17a0 + 097bd4b commit 7b2481a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Agora vamos mostrar o passo a passo de como utilizar:
77
<a href="">v1.0.10</a>
88
<a href="">v1.0.12</a>
99
<a href="">v1.0.13</a>
10+
<a href="">v1.0.14</a>
1011

1112
### Importando a lib para o projeto:
1213
```groovy
@@ -138,7 +139,7 @@ List<Pessoa> list = simpleSQL.selectTable(new Pessoa())
138139
### DELETE
139140
Para remover algum registro da tabela, ainda segue o mesmo padrão dos métodos anteriores
140141
```JAVA
141-
boolean result = simpleSQL.deleteColumn(new Pessoa())
142+
boolean result = simpleSQL.deleteColumn("Nome da tabela")
142143
.where()
143144
.column("id")
144145
.equals()

0 commit comments

Comments
 (0)