17 using NUnit.Framework;
19 namespace Deveel.Data.Sql.Parser {
24 const string sql =
@"CREATE OR REPLACE TRIGGER test_trigger BEFORE INSERT ON test_table FOR EACH ROW
28 SELECT INTO a FROM table2 WHERE b = 22;
33 Assert.IsNotNull(result);
The result of a parse of an SQL input
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...
bool HasErrors
Gets a boolean value indicating if the result has any error.
static void ParseCreateSimpleTrigger()