An alternative to UBB.threads
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
FLocal/Patcher/DB/ColumnOptions.cs

50 lines
1.1 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Patcher.DB
{
class ColumnOptions : IEquatable<ColumnOptions>
{
public readonly string type;
public readonly string defaultValue;
public readonly bool isNotNull;
private string _simpleType
{
get
{
//for better compatibility with size specifiers we strip anything except for plain type name here
string stripped;
if(type.Contains('('))
{
stripped = type.Substring(0, type.IndexOf('('));
}
else
{
stripped = type;
}
return stripped.ToLower();
}
}
public ColumnOptions(string type, string defaultValue, bool isNotNull)
{
this.type = type;
this.defaultValue = defaultValue;
this.isNotNull = isNotNull;
}
#region IEquatable<ColumnOptions> Members
public bool Equals(ColumnOptions other)
{
return (this._simpleType == other._simpleType) && (this.defaultValue == other.defaultValue) && (this.isNotNull == other.isNotNull);
}
#endregion
}
}