DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
TabularType.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Deveel.Data.Types {
4  public sealed class TabularType : SqlType {
5  public TabularType()
6  : base("TABLE", SqlTypeCode.QueryPlan) {
7  }
8  }
9 }
Defines the properties of a specific SQL Type and handles the values compatible.
Definition: SqlType.cs:33
SqlTypeCode
Enumerates the codes of all SQL types handled by the system.
Definition: SqlTypeCode.cs:23