17 using NUnit.Framework;
19 namespace Deveel.Data.Sql.Parser {
24 const string sql =
"INSERT IN table VALUES (1, 'name');";
28 Assert.IsNotNull(result);
29 Assert.IsNotEmpty(result.
Errors);
The result of a parse of an SQL input
ICollection< SqlParseError > Errors
Gets a collection of SqlParseError that were found during the parse of an input.
void InsertIntoSyntaxError()
static readonly ISqlParser Default
SqlParseResult Parse(string input)
Analyzes and parses the input and results an object that describes the parsed nodes in a tree that ca...