https://github.com/hmarr/tree-sitter-sqlite
🌳 A work-in-progress SQLite grammar for tree-sitter
https://github.com/hmarr/tree-sitter-sqlite
Last synced: 8 months ago
JSON representation
🌳 A work-in-progress SQLite grammar for tree-sitter
- Host: GitHub
- URL: https://github.com/hmarr/tree-sitter-sqlite
- Owner: hmarr
- Created: 2020-04-22T00:11:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-22T11:27:43.000Z (about 6 years ago)
- Last Synced: 2025-06-12T02:04:49.392Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 20.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tree-sitter-sqlite
A work-in-progress [SQLite](https://www.sqlite.org/) grammar for [tree-sitter](https://tree-sitter.github.io/tree-sitter/).
## Useful resources
- [SQLite syntax guide](https://sqlite.org/lang.html)
- [SQLite ANTLR grammar](https://github.com/antlr/grammars-v4/blob/master/sql/sqlite/SQLite.g4)
- [SQL standard grammar](https://jakewheat.github.io/sql-overview/)
- [Alternative source](https://ronsavage.github.io/SQL/)
- [Syntax rules](https://github.com/ronsavage/SQL/blob/master/Syntax.rules.txt) (referenced in the grammar)
- [Documentation for creating tree-siter parser](https://tree-sitter.github.io/tree-sitter/creating-parsers)