From c7aca669ac54a23ba8547951baa1e2fe11153b4c Mon Sep 17 00:00:00 2001 From: chenquan Date: Mon, 12 Sep 2022 22:29:31 +0800 Subject: [PATCH] doc: add README.md --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..0c5618c --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# sqlplus + +A sql enhancement tool library based on `database/sql/driver` + +# installation + +```shell +go get -u github.com/chenquan/sqlplus +``` + +# usage +Implement the `sqlplus.Hook` interface and wrap it with `sqlplus.New(d driver.Driver, hook Hook) driver.Driver` + +# example + +- [https://github.com/chenquan/sqltrace](sqltrace): A sql link tracking library, +suitable for any relational database such as MySQL, oracle, SQL Server, PostgreSQL,TiDB etc. \ No newline at end of file