16 using System.Collections.Generic;
20 using NUnit.Framework;
22 namespace Deveel.Data.Sql.Statements {
27 const string sql =
"CREATE USER test IDENTIFIED BY PASSWORD '123456789';";
29 IEnumerable<SqlStatement> statements = null;
32 Assert.IsNotNull(statements);
Represents the foundation class of SQL statements to be executed.
void ParseSimpleCreateUser()
static IEnumerable< SqlStatement > Parse(string sqlSource)
Parses a given string into one of more statements.