LinkMenuExpand(external link)DocumentSearchCopyCopied

MySqlConnectionOpenedConditions enumeration

Bitflags giving the conditions under which a connection was opened.

[Flags]
public enum MySqlConnectionOpenedConditions

Values

namevaluedescription
None0x0No specific conditions apply. This value may be used when an existing pooled connection is reused without being reset.
New0x1A new physical connection to a MySQL Server was opened. This value is mutually exclusive with Reset.
Reset0x2An existing pooled connection to a MySQL Server was reset. This value is mutually exclusive with New.

See Also