SqliteAntlrParser
SQLite parser implementation using ANTLR grammar
[ExcludeFromCodeCoverage]
public sealed class SqliteAntlrParser : ISqlParser
Methods
ParseSql(string)
public Result<SelectStatement, string> ParseSql(string sql)
Parses the specified SQL text and returns a Result containing either a SelectStatement or an error.
Parameters:
| Name | Type | Description |
|---|---|---|
sql |
String |
The SQL text to parse. |
Returns: String> - A Result containing either a parsed SelectStatement or an error message.