Skip to content

Commit 6350289

Browse files
committed
Emphasize streaming nature of the parser in readme
Clarify that the parser reads input in small chunks and yields statements one by one, never loading the entire file into memory.
1 parent a40b76d commit 6350289

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Nextras Multi Query Parser
55
[![Downloads this Month](https://img.shields.io/packagist/dm/nextras/multi-query-parser.svg?style=flat)](https://packagist.org/packages/nextras/multi-query-parser)
66
[![Stable Version](https://img.shields.io/packagist/v/nextras/multi-query-parser.svg?style=flat)](https://packagist.org/packages/nextras/multi-query-parser)
77

8-
A PHP library for splitting multi-query SQL files into individual statements. Handles database-specific syntax like custom delimiters, dollar-quoted strings, and `BEGIN...END` blocks. Processes files in chunks for memory efficiency.
8+
A streaming PHP parser for splitting multi-query SQL files into individual statements. Handles database-specific syntax like custom delimiters, dollar-quoted strings, and `BEGIN...END` blocks. The parser reads input in small chunks and yields statements one by one -- it never loads the entire file into memory, making it suitable for large SQL dumps.
99

1010
### Supported Databases
1111

0 commit comments

Comments
 (0)