slight project rename
This commit is contained in:
parent
9f2bfc1820
commit
aa58b3116c
13
README.md
13
README.md
|
@ -1,22 +1,23 @@
|
||||||
# views-sql
|
# views.sql
|
||||||
|
|
||||||
SQL plugin for the [views][1] library. Allows for plain SQL strings to
|
SQL plugin for the [views][1] library. Allows for plain SQL strings to
|
||||||
be used.
|
be used.
|
||||||
|
|
||||||
[1]: https://github.com/gered/views
|
[1]: https://github.com/gered/views
|
||||||
|
|
||||||
Implementation is largely based on the views-honeysql library. As such,
|
Implementation is largely based on the [views.honeysql][2] library. As
|
||||||
the hints generated by either of these libraries are compatible with
|
such, the hints generated by either of these libraries are compatible
|
||||||
each other. So you can opt to include honeysql and sql views in the
|
with each other. So you can opt to include honeysql and sql views in the
|
||||||
same view system if you wish and vexec! calls will trigger updates as
|
same view system if you wish and vexec! calls will trigger updates as
|
||||||
you would expect across all of these views.
|
you would expect across all of these views.
|
||||||
|
|
||||||
Note that this library leverages [JSqlParser][2] for parsing SQL
|
Note that this library leverages [JSqlParser][3] for parsing SQL
|
||||||
queries and extracting the view system hint information needed.
|
queries and extracting the view system hint information needed.
|
||||||
JSqlParser is not perfect and will not be able to parse some more
|
JSqlParser is not perfect and will not be able to parse some more
|
||||||
complex queries and/or queries using some vendor-specific extensions.
|
complex queries and/or queries using some vendor-specific extensions.
|
||||||
|
|
||||||
[2]: https://github.com/JSQLParser/JSqlParser
|
[2]: https://github.com/gered/views.honeysql
|
||||||
|
[3]: https://github.com/JSQLParser/JSqlParser
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
(defproject gered/views-sql "0.1.0-SNAPSHOT"
|
(defproject gered/views.sql "0.1.0-SNAPSHOT"
|
||||||
:description "Plain SQL view implementation for views"
|
:description "Plain SQL view implementation for views"
|
||||||
:url "https://github.com/gered/views-honeysql"
|
:url "https://github.com/gered/views.sql"
|
||||||
|
|
||||||
:license {:name "MIT License"
|
:license {:name "MIT License"
|
||||||
:url "http://opensource.org/licenses/MIT"}
|
:url "http://opensource.org/licenses/MIT"}
|
||||||
|
|
Loading…
Reference in a new issue