Minor improvement to README.md

pull/32/head
Vinícius Garcia 2022-11-29 09:51:25 -03:00
parent 340a320281
commit e7896dc16e
1 changed files with 9 additions and 4 deletions

View File

@ -9,10 +9,15 @@
KSQL was created to offer an actually simple and satisfactory KSQL was created to offer an actually simple and satisfactory
tool for interacting with SQL Databases in Golang. tool for interacting with SQL Databases in Golang.
The core idea on KSQL is to offer an easy to use interface, The core goal of KSQL is not to offer new features that
the actual communication with the database is decoupled so we can use are unavailable on other libraries (although we do have some),
KSQL on top of `pgx`, `database/sql` and possibly other tools. but to offer a well-thought and well-planned API so that users
You can even create you own backend adapter for KSQL which is have an easier time, learning, debugging, and avoiding common pitfalls.
KSQL is also decoupled from its backend so that
the actual communication with the database is performed by
well-known and trusted technologies, namely: `pgx` and `database/sql`.
You can even create your own backend adapter for KSQL which is
useful in some situations. useful in some situations.
In this README you will find examples for "Getting Started" with the library, In this README you will find examples for "Getting Started" with the library,