DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
XmlTypeResolver.cs
Go to the documentation of this file.
1 using System;
2 
3 using Deveel.Data.Types;
4 
5 namespace Deveel.Data.Xml {
6  public sealed class XmlTypeResolver : ITypeResolver {
8  if (String.Equals(context.TypeName, "XMLNODE", StringComparison.OrdinalIgnoreCase))
9  return new XmlNodeType();
10  return null;
11  }
12  }
13 }
A long string in the system.
Defines the properties of a specific SQL Type and handles the values compatible.
Definition: SqlType.cs:33
SqlType ResolveType(TypeResolveContext context)