Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
DebitCardz committed Jul 8, 2024
2 parents f4d9c0a + 8d1fb68 commit 858eb86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ suspend fun main() {
)
).connect()

val model = connection.query<ExampleModel>("SELECT example FROM table LIMIT 1;")
.singleNullable()
val model = connection.query("SELECT example FROM table LIMIT 1;")
.singleNullable<ExampleModel>()
println(model?.example)
}
```

0 comments on commit 858eb86

Please sign in to comment.