-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added a "SQL Compliance" page (that is not yet complete) but it enough to get the ball rolling on fleshing out exactly which features are missing before we can claim a v1.0.0 - Updated the README to be a lot more helpful with quick links. - Fixed some formatting that was previously breaking the build. - Added a "Transactions" and "Installing & Updating" documentation pages. - Added the readthedocs.yaml configuration file which is the recommended way and also cleaned up the existing conf files and pinned the python dependencies (as recommended).
- Loading branch information
1 parent
04071ff
commit 9f82626
Showing
22 changed files
with
453 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,31 @@ | ||
vsql | ||
==== | ||
✌️ vsql | ||
====== | ||
|
||
vsql is a single-file SQL database written in pure [V](https://vlang.io) with | ||
no dependencies. | ||
vsql is a [single-file](https://vsql.readthedocs.io/en/latest/cli.html) or | ||
[PostgreSQL-server compatible](https://vsql.readthedocs.io/en/latest/server.html), | ||
[transactional](https://vsql.readthedocs.io/en/latest/transaction.html), | ||
[SQL-compliant](https://vsql.readthedocs.io/en/latest/sql-compliance.html) | ||
database written in pure [V](https://vlang.io) with zero dependencies. | ||
|
||
View documentation at [vsql.readthedocs.io](https://vsql.readthedocs.io/). | ||
After | ||
[installing or updating](https://vsql.readthedocs.io/en/latest/install.html), | ||
you can use vsql | ||
[within your V applications](https://vsql.readthedocs.io/en/latest/v-module.html), | ||
interact with database files using the | ||
[CLI](https://vsql.readthedocs.io/en/latest/cli.html), or connect to a database | ||
using the | ||
[built-in PostgreSQL-compatible server](https://vsql.readthedocs.io/en/latest/server.html). | ||
|
||
See the full documentation at [vsql.readthedocs.io](https://vsql.readthedocs.io/) | ||
or use one of the quick links: | ||
|
||
- [FAQ](https://vsql.readthedocs.io/en/latest/faq.html) | ||
- [CLI](https://vsql.readthedocs.io/en/latest/cli.html) | ||
- [Supported PostgreSQL clients](https://vsql.readthedocs.io/en/latest/supported-clients.html) | ||
- [Features](https://vsql.readthedocs.io/en/latest/features.html) | ||
- [SQL Reference](https://vsql.readthedocs.io/en/latest/features.html) | ||
- [Contributing](https://vsql.readthedocs.io/en/latest/contributing.html) | ||
- [Data Types](https://vsql.readthedocs.io/en/latest/data-types.html) | ||
- [Functions](https://vsql.readthedocs.io/en/latest/functions.html) | ||
- [SQLSTATE](https://vsql.readthedocs.io/en/latest/sqlstate.html) | ||
- [SQL Compliance](https://vsql.readthedocs.io/en/latest/sql-compliance.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ Appendix | |
functions.rst | ||
keywords.rst | ||
operators.rst | ||
sql-compliance.rst | ||
sqlstate.rst |
Oops, something went wrong.