DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
CreateSchemaStatement.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Deveel.Data.Sql.Statements {
4  public sealed class CreateSchemaStatement : SqlStatement {
5  public CreateSchemaStatement(string schemaName) {
6  if (String.IsNullOrEmpty(schemaName))
7  throw new ArgumentNullException("schemaName");
8 
9  SchemaName = schemaName;
10  }
11 
12  public string SchemaName { get; private set; }
13 
14  protected override void ExecuteStatement(ExecutionContext context) {
15  throw new NotImplementedException();
16  }
17  }
18 }
Represents the foundation class of SQL statements to be executed.
Definition: SqlStatement.cs:32
override void ExecuteStatement(ExecutionContext context)