Skip to content

Commit 5a4022d

Browse files
committed
Add SQLite to supported databases in readme
1 parent 779ed6e commit 5a4022d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

readme.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ A streaming PHP parser for splitting multi-query SQL files into individual state
1212
- **MySQL** -- backtick identifiers, `DELIMITER` command, `#` comments
1313
- **PostgreSQL** -- dollar-quoted strings (`$BODY$...$BODY$`), `E'...'` escape strings
1414
- **SQL Server** -- `[bracketed]` identifiers, `BEGIN...END` blocks
15+
- **SQLite** -- all three identifier styles (`"double"`, `` `backtick` ``, `[bracket]`), `BEGIN...END` blocks for triggers
1516

1617
All parsers handle standard SQL comments (`--`, `/* */`), quoted strings, and semicolon delimiters.
1718

@@ -57,7 +58,7 @@ foreach ($parser->parseFileStream($stream) as $query) {
5758
}
5859
```
5960

60-
Available parsers: `MySqlMultiQueryParser`, `PostgreSqlMultiQueryParser`, `SqlServerMultiQueryParser`.
61+
Available parsers: `MySqlMultiQueryParser`, `PostgreSqlMultiQueryParser`, `SqlServerMultiQueryParser`, `SqliteMultiQueryParser`.
6162

6263
### License
6364

0 commit comments

Comments
 (0)