Click or drag to resize

SQLColumnFlags Enumeration

Flags for use when adding columns in SQL helper classes.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[FlagsAttribute]
public enum SQLColumnFlags
Members
  Member nameValueDescription
AddEllipsesIfTruncated1Apply ellipses to the string if truncated.
NoTruncate2Do not truncate even if a MaxLength is provided.
IncludeMilliseconds4 Date/time value should include milliseconds. Normally date/time values are stored only to the second resolution. If specified on a non-date/time column this flag has no effect.
OnlyIfDirty8 The column should be added only if the value is "dirty". This applies only to columns added by specifying an IField in which case Dirty is used to determine if the value is dirty. See AddColumn(IField, SQLColumnFlags).
DateTimeStrings16 Date/time values may be provided as strings rather than DateTime objects. When provided as a string the value should be formatted as "yyyy-MM-dd HH:mm:ss" (time is optional) to avoid cross-locale problems. If specified on a non-date/time column this flag has no effect.
See Also